commit 16dda4561157112c888b2dd5592aac4b3ff8476a Author: femsci Date: Tue Oct 3 00:31:37 2023 +0200 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3d1f5e --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**/obj/ +**/bin/ + diff --git a/DotConf.sln b/DotConf.sln new file mode 100644 index 0000000..8e1aed8 --- /dev/null +++ b/DotConf.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{1554B8AB-D2F9-4054-A2E8-CC267DB45FEA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nyanbyte.Dotconf", "src\Nyanbyte.Dotconf\Nyanbyte.Dotconf.csproj", "{048D232D-1E1D-45B4-B3C3-8717644793B4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {048D232D-1E1D-45B4-B3C3-8717644793B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {048D232D-1E1D-45B4-B3C3-8717644793B4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {048D232D-1E1D-45B4-B3C3-8717644793B4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {048D232D-1E1D-45B4-B3C3-8717644793B4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {048D232D-1E1D-45B4-B3C3-8717644793B4} = {1554B8AB-D2F9-4054-A2E8-CC267DB45FEA} + EndGlobalSection +EndGlobal diff --git a/src/Nyanbyte.Dotconf/Nyanbyte.Dotconf.csproj b/src/Nyanbyte.Dotconf/Nyanbyte.Dotconf.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/src/Nyanbyte.Dotconf/Nyanbyte.Dotconf.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/src/Nyanbyte.Dotconf/Program.cs b/src/Nyanbyte.Dotconf/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/src/Nyanbyte.Dotconf/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!");