mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
Add Visual Studio launch settings and build-and-run script for RemSox solution
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"profiles": {
|
||||
"WSL": {
|
||||
"commandName": "WSL2",
|
||||
"distributionName": ""
|
||||
},
|
||||
"RemSox": {
|
||||
"commandName": "Executable",
|
||||
"executablePath": "powershell",
|
||||
"commandLineArgs": "./build-and-run.ps1",
|
||||
"workingDirectory": "./"
|
||||
}
|
||||
}
|
||||
}
|
||||
+3
-1
@@ -1,3 +1,5 @@
|
||||
<Solution>
|
||||
<Project Path="RemSox.csproj" />
|
||||
<Project Path="RemSox.csproj">
|
||||
<Build Solution="Debug|*" Project="false" />
|
||||
</Project>
|
||||
</Solution>
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
Set-Location $PSScriptRoot
|
||||
|
||||
cosmos build
|
||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
||||
|
||||
cosmos run
|
||||
Reference in New Issue
Block a user