configure the project
This commit is contained in:
commit
609de00254
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
/App/bin/
|
||||||
|
/App/obj/
|
10
App/App.csproj
Normal file
10
App/App.csproj
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
7
App/Program.cs
Normal file
7
App/Program.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace Game {
|
||||||
|
internal class Program {
|
||||||
|
static int Main(string[] args) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
34
bonuska.sln
Normal file
34
bonuska.sln
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.0.31903.59
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "App", "App\App.csproj", "{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{C086D023-1BB1-472F-BA39-E8F8D3FCED7B}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Loading…
Reference in New Issue
Block a user