-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
27 lines (24 loc) · 1.1 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
<Project>
<!-- https://nerdymishka.substack.com/p/msbuild-inherit-directorybuildprops -->
<!-- Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" / -->
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<!-- Enable Build Acceleration in Visual Studio. -->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<!--
If you target a framework earlier than .NET 5 (including .NET Framework and .NET Standard),
you should set ProduceReferenceAssembly to true in order to speed incremental builds.
If you multi-target and any target is before .NET 5, you need this.
Even if you target .NET 5 or later, having this property is fine.
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AsyncFixer" Version="*">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>