Add project files.

This commit is contained in:
2020-11-26 23:12:17 +01:00
parent 91067c7dbc
commit f036102bcb
3 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>

12
AutoFacSamles/Program.cs Normal file
View File

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