From 0b38c8ec4fc25dac94bce0945ae8433df0f7107a Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 26 Mar 2018 18:58:19 +0900 Subject: [PATCH] Fix some VS specific issues --- osu.Desktop/Properties/launchSettings.json | 9 +++++++++ osu.Desktop/osu.Desktop.csproj | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 osu.Desktop/Properties/launchSettings.json diff --git a/osu.Desktop/Properties/launchSettings.json b/osu.Desktop/Properties/launchSettings.json new file mode 100644 index 0000000000..3842c10a4e --- /dev/null +++ b/osu.Desktop/Properties/launchSettings.json @@ -0,0 +1,9 @@ +{ + "profiles": { + "osu.Desktop": { + // this avoids an ugly command window appearing when running without debugger attached from VS2017 + "commandName": "Executable", + "executablePath": ".\\osu!.exe" + } + } +} \ No newline at end of file diff --git a/osu.Desktop/osu.Desktop.csproj b/osu.Desktop/osu.Desktop.csproj index cca7e70632..7dfb2aa6cb 100644 --- a/osu.Desktop/osu.Desktop.csproj +++ b/osu.Desktop/osu.Desktop.csproj @@ -23,6 +23,9 @@ $(DefineConstants);NET_FRAMEWORK + + osu.Desktop.Program +