gaslight gatekeep girlboss :)

This commit is contained in:
2023-01-12 02:55:27 +01:00
parent b797c0c84a
commit cd54185023
47 changed files with 218 additions and 45 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build debug",
"command": "msbuild",
"type": "shell",
"args": [
"${workspaceFolder}/GaslightArrin.sln",
"/t:GaslightArrin",
"/p:Configuration=Debug",
"/p:Platform=\"Any CPU\""
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build release",
"command": "msbuild",
"type": "shell",
"args": [
"${workspaceFolder}/GaslightArrin.sln",
"/t:GaslightArrin",
"/p:Configuration=Release",
"/p:Platform=\"Any CPU\""
],
"problemMatcher": "$msCompile"
}
]
}