tried to fix bugs (partial success)

This commit is contained in:
2025-04-18 22:31:32 +05:00
parent 04e4f63fd7
commit d5d28d4884
8 changed files with 46 additions and 30 deletions

View File

@@ -1,9 +1,9 @@
#!/usr/bin/env bash
DEP_WORKING_DIR='src-csharp'
CS_CONFIGURATION='Release'
if [[ "$TASK" = *_dbg ]]; then
DEP_BUILD_COMMAND='dotnet build src-csharp.sln -o bin -c Debug'
else
DEP_BUILD_COMMAND='dotnet build src-csharp.sln -o bin -c Release'
CS_CONFIGURATION='Debug'
fi
DEP_BUILD_COMMAND=$"dotnet build src-csharp.sln -o bin -c $CS_CONFIGURATION"
DEP_CLEAN_COMMAND='rm -rf bin obj'
DEP_OTHER_OUT_FILES='bin/Ougge.dll'