34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|||
|
<LangVersion>latest</LangVersion>
|
|||
|
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
|
|||
|
<Configurations>Debug;Test;Release</Configurations>
|
|||
|
<Platforms>x64</Platforms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.11.0"/>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
|
|||
|
<DefineConstants>TRACE;LOG_INFO;PROFILING</DefineConstants>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Test|x64' ">
|
|||
|
<DefineConstants>TRACE;LOG_ERROR;PROFILING</DefineConstants>
|
|||
|
<Optimize>true</Optimize>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
|
|||
|
<DefineConstants>TRACE;LOG_ERROR</DefineConstants>
|
|||
|
<Optimize>true</Optimize>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
</Project>
|