16 lines
456 B
XML
16 lines
456 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
|
|
<LangVersion>latest</LangVersion>
|
|
<NoWarn>$(NoWarn);CS1570;CS1587;CS1591;</NoWarn>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
</Project> |