-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (26 loc) · 1.15 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>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<Features>strict</Features>
<ImplicitUsings>enable</ImplicitUsings>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/martinothamar/FastLazy</PackageProjectUrl>
<RepositoryUrl>https://github.com/martinothamar/FastLazy</RepositoryUrl>
<PackageTags>dotnet lazy fastlazy fastlazyvalue dotnet6 .net6</PackageTags>
<RepositoryType>git</RepositoryType>
<Authors>Martin Othamar</Authors>
<Copyright>Copyright 2022 Martin Othamar</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CSharpier.MsBuild" Version="0.16.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>