16 lines
485 B
XML
16 lines
485 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
|
|
<LangVersion>latest</LangVersion>
|
|
<NoWarn>$(NoWarn);CS1570;CS1587;CS1591;CS8601;CS8602;CS8603;CS8618;</NoWarn>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
</Project> |