-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
28 lines (23 loc) · 1.33 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Configuration Condition="$(Configuration) == ''">Debug</Configuration>
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)\</OutputPath>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)build\rtfx.ruleset</CodeAnalysisRuleSet>
<EnableSigning>true</EnableSigning>
<Authors>Marc Schmidt, Janik Schumacher</Authors>
<Copyright>Copyright © RTFX-org 2022</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/RTFX-org/rtfx</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" Condition=" '$(EnableStyleCopAnalyzers)' != 'false' " />
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.48.0.56517" Condition=" '$(EnableSonarAnalyzers)' != 'false' " />
<PackageReference Include="ReflectionAnalyzers" Version="0.3.1" Condition=" '$(EnableReflectionAnalyzers)' != 'false' " />
<PackageReference Include="IDisposableAnalyzers" Version="4.0.2" Condition=" '$(EnableIDisposableAnalyzers)' != 'false' " />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)build/stylecop.json" Link="stylecop.json" Visible="false" />
</ItemGroup>
</Project>