2019-06-02 10:33:35 +02:00
<Project >
<PropertyGroup >
2021-12-27 05:15:43 +01:00
<TargetFramework > net6.0</TargetFramework>
2019-10-03 09:13:12 +02:00
<TargetFramework Condition= "'$(TargetFrameworkOverride)' != ''" > $(TargetFrameworkOverride)</TargetFramework>
2021-12-27 05:15:43 +01:00
<NoWarn > NU1701,CA1816,CA1308,CA1810,CA2208,CA1303,CA2000,CA2016,CA1835,CA2249,CA9998,CA1704</NoWarn>
2021-12-27 05:20:57 +01:00
<LangVersion > 10.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
2022-01-01 14:05:24 +01:00
<PropertyGroup Condition= "( '$(Configuration)' == 'Debug' Or '$(Configuration)' == 'Altcoins-Debug') And '$(RazorCompileOnBuild)' != 'true' And '$(DotNetWatchBuild)' != 'true' And '$(DesignTimeBuild)' != 'true'" >
2020-07-29 12:58:54 +02:00
<RazorCompileOnBuild > false</RazorCompileOnBuild>
</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>