diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..ec69571 --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,14 @@ +{ + "profiles": { + "WSL": { + "commandName": "WSL2", + "distributionName": "" + }, + "RemSox": { + "commandName": "Executable", + "executablePath": "powershell", + "commandLineArgs": "./build-and-run.ps1", + "workingDirectory": "./" + } + } +} \ No newline at end of file diff --git a/RemSox.slnx b/RemSox.slnx index 6d97fbf..35d3dc3 100644 --- a/RemSox.slnx +++ b/RemSox.slnx @@ -1,3 +1,5 @@ - + + + diff --git a/build-and-run.ps1 b/build-and-run.ps1 new file mode 100644 index 0000000..cb4723a --- /dev/null +++ b/build-and-run.ps1 @@ -0,0 +1,6 @@ +Set-Location $PSScriptRoot + +cosmos build +if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } + +cosmos run \ No newline at end of file