diff --git a/AutoFacSamles.sln b/AutoFacSamles.sln new file mode 100644 index 0000000..ae22973 --- /dev/null +++ b/AutoFacSamles.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30717.126 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoFacSamles", "AutoFacSamles\AutoFacSamles.csproj", "{2CFA4809-16F7-4DB9-B4BB-CF60945656E5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2CFA4809-16F7-4DB9-B4BB-CF60945656E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2CFA4809-16F7-4DB9-B4BB-CF60945656E5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2CFA4809-16F7-4DB9-B4BB-CF60945656E5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2CFA4809-16F7-4DB9-B4BB-CF60945656E5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F38CCBAA-BDE1-4A4F-AB56-30F92E22E4AE} + EndGlobalSection +EndGlobal diff --git a/AutoFacSamles/AutoFacSamles.csproj b/AutoFacSamles/AutoFacSamles.csproj new file mode 100644 index 0000000..c73e0d1 --- /dev/null +++ b/AutoFacSamles/AutoFacSamles.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp3.1 + + + diff --git a/AutoFacSamles/Program.cs b/AutoFacSamles/Program.cs new file mode 100644 index 0000000..c179629 --- /dev/null +++ b/AutoFacSamles/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace AutoFacSamles +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +}