21 строка
878 B
XML
21 строка
878 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<DotNetVersion>net8.0</DotNetVersion>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
|
|
<!--
|
|
Adding NoWarn to remove build warnings
|
|
NU1507: Warning when there are multiple package sources when using CPM with no source mapping
|
|
NETSDK1201: Warning that specifying RID won't create self containing app
|
|
PRI257: Ignore default language (en) not being one of the included resources (eg en-us, en-uk)
|
|
-->
|
|
<NoWarn>$(NoWarn);NU1507;NETSDK1201;PRI257</NoWarn>
|
|
|
|
<!-- Required for Hot Reload (See https://github.com/dotnet/sdk/issues/36666) -->
|
|
<IncludeSourceRevisionInInformationalVersion Condition="'$(Configuration)'=='Debug'">false</IncludeSourceRevisionInInformationalVersion>
|
|
</PropertyGroup>
|
|
</Project>
|