fixed #7389: Fix DefineConstants

This commit is contained in:
Jaex 2024-04-11 18:31:21 +03:00
parent b6f9fbc346
commit 8eb08c4a9a
1 changed files with 2 additions and 2 deletions

View File

@ -14,11 +14,11 @@
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStore'">
<DefineConstants>$(DefineConstants);RELEASE;MICROSOFTSTORE</DefineConstants>
<DefineConstants>$(DefineConstants);MicrosoftStore</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'MicrosoftStoreDebug'">
<DefineConstants>$(DefineConstants);DEBUG;MICROSOFTSTORE</DefineConstants>
<DefineConstants>$(DefineConstants);DEBUG;MicrosoftStore</DefineConstants>
<DebugSymbols>true</DebugSymbols>
<Optimize>false</Optimize>
</PropertyGroup>