-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathCodeGen.csproj
More file actions
30 lines (27 loc) · 1.13 KB
/
CodeGen.csproj
File metadata and controls
30 lines (27 loc) · 1.13 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<!--
Inherits Directory.Build.props codes and adds nullability warnings the codegen sources
have not been annotated for. All stay visible as warnings.
CS8600 - null literal to non-nullable
CS8601 - possible null reference assignment
CS8603 - possible null reference return
CS8604 - possible null reference argument
CS8618 - non-nullable field uninitialized in ctor
CS8619 - nullability mismatch
CS8625 - null literal to non-nullable reference
-->
<WarningsNotAsErrors>$(WarningsNotAsErrors);8600;8601;8603;8604;8618;8619;8625</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" />
<PackageReference Include="NuGet.Protocol" />
<PackageReference Include="Serilog" />
<PackageReference Include="Serilog.Sinks.Console" />
<PackageReference Include="System.CommandLine.DragonFruit" />
</ItemGroup>
</Project>