12 lines
302 B
XML
12 lines
302 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
||
|
<PublishAot>true</PublishAot>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
</Project>
|