-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (18 loc) · 907 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (18 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<WarningsAsErrors>$(WarningsAsErrors);nullable</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CodeMetricsConfig.txt" />
</ItemGroup>
<ItemGroup Condition="'$(MSBuildProjectName)' != 'Orbit.Analyzers' And '$(MSBuildProjectName)' != 'Orbit.Analyzers.CodeFixes'">
<ProjectReference Include="$(MSBuildThisFileDirectory)src/Orbit.Analyzers/Orbit.Analyzers.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false"
PrivateAssets="all" />
<ProjectReference Include="$(MSBuildThisFileDirectory)src/Orbit.Analyzers.CodeFixes/Orbit.Analyzers.CodeFixes.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false"
PrivateAssets="all" />
</ItemGroup>
</Project>