mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-06-09 10:06:46 +02:00
18 lines
599 B
XML
18 lines
599 B
XML
<Project>
|
|
<!--
|
|
Content specific properties
|
|
Import *before* Robust.Properties.targets
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<LangVersion Condition="'$(LangVersion)' == ''">14</LangVersion>
|
|
<IsPackable Condition="'$(IsPackable)' == ''">false</IsPackable>
|
|
<Nullable Condition="'$(Nullable)' == ''">enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsNotAsErrors>CS0618,CS0672,CS0612,CS1062,CS1064,NU1901,NU1902,NU1903,NU1904</WarningsNotAsErrors>
|
|
</PropertyGroup>
|
|
</Project>
|