2021-07-30 07:49:28 +00:00
|
|
|
<Project>
|
|
|
|
<!-- Sets defaults for all projects in the repo -->
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)/jellyfin.ruleset</CodeAnalysisRuleSet>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-11-08 19:39:02 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-07-30 07:49:28 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
</Project>
|