-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
31 lines (27 loc) · 1018 Bytes
/
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
29
30
31
<Project>
<PropertyGroup>
<Version Condition="'$(Version)' == ''">99.0.0.0</Version>
</PropertyGroup>
<PropertyGroup Label="Info">
<Company></Company>
<Product>NuGet Monitor</Product>
<Copyright>Copyright © Samir Boulema and contributors</Copyright>
<Title>$(MSBuildProjectName)</Title>
<Authors>Samir Boulema, Tom Englert</Authors>
</PropertyGroup>
<PropertyGroup Label="General Settings">
<LangVersion>12.0</LangVersion>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-All</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<GlobalPackageReference Include="Nullable.Extended.Analyzer" Version="1.15.6169" />
</ItemGroup>
</Project>