2019-06-02 10:33:35 +02:00
<Project >
<PropertyGroup >
2023-11-21 06:11:17 +01:00
<TargetFramework > net8.0</TargetFramework>
2019-10-03 09:13:12 +02:00
<TargetFramework Condition= "'$(TargetFrameworkOverride)' != ''" > $(TargetFrameworkOverride)</TargetFramework>
2023-11-28 15:20:03 +01:00
<NoWarn > $(NoWarn),NU1701,CA1816,CA1308,CA1810,CA2208,CA1303,CA2000,CA2016,CA1835,CA2249,CA9998,CA1704;CS8981</NoWarn>
2023-11-28 10:26:35 +01:00
<LangVersion > 12.0</LangVersion>
2022-11-20 09:42:36 +01:00
<EnableNETAnalyzers > True</EnableNETAnalyzers>
<AnalysisLevel > 6.0</AnalysisLevel>
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>