27 lines
973 B
XML
27 lines
973 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>$(SolutionDir)Common.ruleset</CodeAnalysisRuleSet>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<LangVersion>8.0</LangVersion>
|
|
<OutputPath>$(SolutionDir)output/dll</OutputPath>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>pdbonly</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="$(SolutionDir).stylecop.json" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.113" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
</Project>
|