From c6a9bc18706f44ce6ce2fc89d07f2343ea40bb4a Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 12 Jun 2026 19:31:21 +0200 Subject: [PATCH] Add Visual Studio launch settings and build-and-run script for RemSox solution --- Properties/launchSettings.json | 14 ++++++++++++++ RemSox.slnx | 4 +++- build-and-run.ps1 | 6 ++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 Properties/launchSettings.json create mode 100644 build-and-run.ps1 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