added run.sh

lets you compile and run this mess with the 'dotnet' command on linux
This commit is contained in:
lewd-alt
2025-09-18 09:22:04 -07:00
parent 7f0489b214
commit b36d7c82a2
4 changed files with 16 additions and 1 deletions

View File

@@ -3,6 +3,10 @@
"SlaveMatrix": {
"commandName": "Project",
"workingDirectory": "$(SolutionDir)\\game_folder"
},
"WSL": {
"commandName": "WSL2",
"distributionName": ""
}
}
}

View File

@@ -3,7 +3,7 @@
<PropertyGroup>
<AssemblyName>SlaveMatrix</AssemblyName>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<OutputType>Exe</OutputType>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebuggerFlavor>ProjectDebugger</DebuggerFlavor>
</PropertyGroup>
<PropertyGroup>
<ActiveDebugProfile>SlaveMatrix</ActiveDebugProfile>
</PropertyGroup>
</Project>