first commit

This commit is contained in:
Brady Bodily
2020-12-10 12:00:41 -07:00
commit 31a4309a47
21 changed files with 379 additions and 0 deletions

View 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
View File

@@ -0,0 +1,7 @@
namespace Final
{
public class CoreModule
{
}
}

9
ConsoleApp/IModule.cs Normal file
View 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
View File

@@ -0,0 +1,12 @@
using System;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}