init
This commit is contained in:
commit
feea3bc3d3
3 changed files with 38 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
**/bin/
|
||||
**/obj/
|
27
Nyanbyte.Cli.sln
Normal file
27
Nyanbyte.Cli.sln
Normal 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", "{9F8A45A4-0083-485E-9EA5-1E3AC379C5DB}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nyanbyte.Cli", "src\Nyanbyte.Cli\Nyanbyte.Cli.csproj", "{695AD233-0E65-45FE-B76A-6E261E68C28C}"
|
||||
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
|
||||
{695AD233-0E65-45FE-B76A-6E261E68C28C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{695AD233-0E65-45FE-B76A-6E261E68C28C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{695AD233-0E65-45FE-B76A-6E261E68C28C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{695AD233-0E65-45FE-B76A-6E261E68C28C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{695AD233-0E65-45FE-B76A-6E261E68C28C} = {9F8A45A4-0083-485E-9EA5-1E3AC379C5DB}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
9
src/Nyanbyte.Cli/Nyanbyte.Cli.csproj
Normal file
9
src/Nyanbyte.Cli/Nyanbyte.Cli.csproj
Normal file
|
@ -0,0 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Loading…
Reference in a new issue