commit 609de0025402c1ab42123f1be8adb4d275403b64 Author: Slavasil Date: Sun Mar 23 12:40:40 2025 +0300 configure the project diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9fa1b8e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/App/bin/ +/App/obj/ diff --git a/App/App.csproj b/App/App.csproj new file mode 100644 index 0000000..fd4bd08 --- /dev/null +++ b/App/App.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + + diff --git a/App/Program.cs b/App/Program.cs new file mode 100644 index 0000000..f346be5 --- /dev/null +++ b/App/Program.cs @@ -0,0 +1,7 @@ +namespace Game { + internal class Program { + static int Main(string[] args) { + return 0; + } + } +} diff --git a/bonuska.sln b/bonuska.sln new file mode 100644 index 0000000..2f02e29 --- /dev/null +++ b/bonuska.sln @@ -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