2019-06-02 10:33:35 +02:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
2019-10-03 13:26:20 +02:00
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-10-03 09:13:12 +02:00
|
|
|
<TargetFramework Condition="'$(TargetFrameworkOverride)' != ''">$(TargetFrameworkOverride)</TargetFramework>
|
2020-01-12 07:32:26 +01:00
|
|
|
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208,CA1303,CA2000</NoWarn>
|
2019-10-03 13:26:20 +02:00
|
|
|
<LangVersion>8.0</LangVersion>
|
2019-06-02 10:33:35 +02:00
|
|
|
</PropertyGroup>
|
2020-07-29 11:55:28 +02:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<Configurations>Debug;Release;Altcoins-Release;Altcoins-Debug</Configurations>
|
|
|
|
<Platforms>AnyCPU</Platforms>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Default similar to Debug/Release -->
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Altcoins-Release' ">
|
|
|
|
<Optimize Condition=" '$(Optimize)' == '' ">true</Optimize>
|
|
|
|
<Altcoins>true</Altcoins>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Altcoins-Debug'">
|
|
|
|
<DefineConstants>$(DefineConstants);DEBUG</DefineConstants>
|
|
|
|
<Altcoins>true</Altcoins>
|
|
|
|
</PropertyGroup>
|
|
|
|
<!-- -->
|
2020-07-29 12:58:54 +02:00
|
|
|
|
|
|
|
<PropertyGroup Condition="( '$(Configuration)' == 'Debug' Or '$(Configuration)' == 'Altcoins-Debug') And '$(RazorCompileOnBuild)' != 'true'">
|
|
|
|
<RazorCompileOnBuild>false</RazorCompileOnBuild>
|
|
|
|
<DefineConstants>$(DefineConstants);RAZOR_RUNTIME_COMPILE</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-07-29 11:55:28 +02:00
|
|
|
<PropertyGroup Condition="'$(Altcoins)' == 'true'">
|
|
|
|
<DefineConstants>$(DefineConstants);ALTCOINS</DefineConstants>
|
|
|
|
</PropertyGroup>
|
2019-06-02 10:33:35 +02:00
|
|
|
</Project>
|