first commit
This commit is contained in:
12
ConsoleApp/ConsoleApp.csproj
Normal file
12
ConsoleApp/ConsoleApp.csproj
Normal file
@@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DryIoc.dll" Version="4.5.2" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
7
ConsoleApp/CoreModule.cs
Normal file
7
ConsoleApp/CoreModule.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Final
|
||||
{
|
||||
public class CoreModule
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
9
ConsoleApp/IModule.cs
Normal file
9
ConsoleApp/IModule.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using DryIoc;
|
||||
namespace ConsoleApp
|
||||
{
|
||||
public interface IModule
|
||||
{
|
||||
void Register(IContainer container);
|
||||
void Resolve(IContainer container);
|
||||
}
|
||||
}
|
||||
12
ConsoleApp/Program.cs
Normal file
12
ConsoleApp/Program.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace ConsoleApp
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user