1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00

Fix some VS specific issues

This commit is contained in:
Dean Herbert 2018-03-26 18:58:19 +09:00
parent 5159127bce
commit 0b38c8ec4f
2 changed files with 12 additions and 0 deletions

View File

@ -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"
}
}
}

View File

@ -23,6 +23,9 @@
<PropertyGroup Label="Defines">
<DefineConstants Condition="'$(TargetFramework)' == 'net461'">$(DefineConstants);NET_FRAMEWORK</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<StartupObject>osu.Desktop.Program</StartupObject>
</PropertyGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\osu-framework\osu.Framework\osu.Framework.csproj" />
<ProjectReference Include="..\osu.Game.Rulesets.Osu\osu.Game.Rulesets.Osu.csproj" />