2020-01-16 22:52:41 +00:00
|
|
|
<Project>
|
|
|
|
<PropertyGroup>
|
2020-08-28 13:12:09 +00:00
|
|
|
<AnalysisLevel>5</AnalysisLevel>
|
2022-01-30 05:56:08 +00:00
|
|
|
<ContinuousIntegrationBuild Condition=" '$(GITLAB_CI)' != '' Or '$(APPVEYOR)' != '' ">true</ContinuousIntegrationBuild>
|
2021-04-04 04:15:22 +00:00
|
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
2020-01-16 22:52:41 +00:00
|
|
|
<ErrorReport>prompt</ErrorReport>
|
2022-07-13 12:02:58 +00:00
|
|
|
<Features>strict</Features>
|
2020-09-22 10:48:13 +00:00
|
|
|
<IsTargetingNetFramework>$(TargetFramework.StartsWith("net4"))</IsTargetingNetFramework>
|
2022-07-13 13:20:40 +00:00
|
|
|
<LangVersion>10.0</LangVersion>
|
2021-01-17 23:26:51 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2020-01-28 02:44:40 +00:00
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2020-01-26 00:32:18 +00:00
|
|
|
<RunAnalyzersDuringBuild Condition=" '$(MachineRunAnalyzersDuringBuild)' == '' ">false</RunAnalyzersDuringBuild>
|
|
|
|
<RunCodeAnalysis>false</RunCodeAnalysis>
|
2020-01-16 22:52:41 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2020-05-28 10:50:54 +00:00
|
|
|
<DebugType>portable</DebugType>
|
2020-01-16 22:52:41 +00:00
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
2020-05-28 10:50:54 +00:00
|
|
|
<DebugType>portable</DebugType>
|
2020-01-16 22:52:41 +00:00
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
</PropertyGroup>
|
2020-06-30 04:44:39 +00:00
|
|
|
<PropertyGroup Condition=" '$(MachineExtraCompilationFlag)' != '' ">
|
|
|
|
<DefineConstants>$(DefineConstants);$(MachineExtraCompilationFlag)</DefineConstants>
|
|
|
|
</PropertyGroup>
|
2020-09-22 10:48:13 +00:00
|
|
|
<ItemGroup>
|
2021-01-17 23:26:51 +00:00
|
|
|
<PackageReference Include="Nullable" Version="1.3.0" PrivateAssets="all" />
|
|
|
|
</ItemGroup>
|
2021-07-01 01:04:32 +00:00
|
|
|
<PropertyGroup Condition=" $(IsTargetingNetFramework) ">
|
|
|
|
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
|
|
|
|
</PropertyGroup>
|
2021-01-17 23:26:51 +00:00
|
|
|
<ItemGroup Condition=" $(IsTargetingNetFramework) ">
|
2021-06-21 02:02:58 +00:00
|
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
|
2021-07-01 01:04:32 +00:00
|
|
|
<PackageReference Include="System.Resources.Extensions" Version="5.0.0" />
|
2020-09-22 10:48:13 +00:00
|
|
|
</ItemGroup>
|
2020-01-16 22:52:41 +00:00
|
|
|
</Project>
|