configure the project

This commit is contained in:
Slavasil 2025-03-23 12:40:40 +03:00
commit 609de00254
4 changed files with 53 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/App/bin/
/App/obj/

10
App/App.csproj Normal file
View 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
View File

@ -0,0 +1,7 @@
namespace Game {
internal class Program {
static int Main(string[] args) {
return 0;
}
}
}

34
bonuska.sln Normal file
View 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