13 lines
481 B
XML
13 lines
481 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
<EnablePreviewFeatures>True</EnablePreviewFeatures>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<!-- System.Net.Quic not officially supported on some platforms -->
|
|
<NoWarn>CA1416</NoWarn>
|
|
</PropertyGroup>
|
|
</Project>
|