From b36d7c82a2b8a0a9f20d9c9dfa5e993c4800492f Mon Sep 17 00:00:00 2001
From: lewd-alt <210463139+lewd-alt@users.noreply.github.com>
Date: Thu, 18 Sep 2025 09:22:04 -0700
Subject: [PATCH] added run.sh
lets you compile and run this mess with the 'dotnet' command on linux
---
SlaveMatrix/Properties/launchSettings.json | 4 ++++
SlaveMatrix/SlaveMatrix.csproj | 2 +-
SlaveMatrix/SlaveMatrix.csproj.user | 9 +++++++++
run.sh | 2 ++
4 files changed, 16 insertions(+), 1 deletion(-)
create mode 100644 SlaveMatrix/SlaveMatrix.csproj.user
create mode 100644 run.sh
diff --git a/SlaveMatrix/Properties/launchSettings.json b/SlaveMatrix/Properties/launchSettings.json
index 867eb5c..e73cfc4 100644
--- a/SlaveMatrix/Properties/launchSettings.json
+++ b/SlaveMatrix/Properties/launchSettings.json
@@ -3,6 +3,10 @@
"SlaveMatrix": {
"commandName": "Project",
"workingDirectory": "$(SolutionDir)\\game_folder"
+ },
+ "WSL": {
+ "commandName": "WSL2",
+ "distributionName": ""
}
}
}
\ No newline at end of file
diff --git a/SlaveMatrix/SlaveMatrix.csproj b/SlaveMatrix/SlaveMatrix.csproj
index 9d66a74..3595ef2 100644
--- a/SlaveMatrix/SlaveMatrix.csproj
+++ b/SlaveMatrix/SlaveMatrix.csproj
@@ -3,7 +3,7 @@
SlaveMatrix
False
- Exe
+ WinExe
netcoreapp3.1
x64
diff --git a/SlaveMatrix/SlaveMatrix.csproj.user b/SlaveMatrix/SlaveMatrix.csproj.user
new file mode 100644
index 0000000..f259d38
--- /dev/null
+++ b/SlaveMatrix/SlaveMatrix.csproj.user
@@ -0,0 +1,9 @@
+
+
+
+ ProjectDebugger
+
+
+ SlaveMatrix
+
+
\ No newline at end of file
diff --git a/run.sh b/run.sh
new file mode 100644
index 0000000..f93ec0c
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,2 @@
+cd ./game_folder/
+DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true dotnet run --project ../SlaveMatrix/
\ No newline at end of file