This commit is contained in:
femsci 2023-10-03 00:31:37 +02:00
commit 16dda45611
Signed by: femsci
GPG key ID: 08F7911F0E650C67
4 changed files with 42 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
**/obj/
**/bin/

27
DotConf.sln Normal file
View file

@ -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

View file

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View file

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");