Files

21 lines
808 B
XML
Raw Permalink Normal View History

2026-06-09 06:41:28 +03:30
<Project>
<!-- Shared build settings for every project in the solution. -->
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<!-- CS1591: missing XML doc comment — irrelevant with docs off. -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<Deterministic>true</Deterministic>
<RootNamespace>$(MSBuildProjectName)</RootNamespace>
</PropertyGroup>
</Project>