Directory.Build.props 513 B

1234567891011121314151617
  1. <Project>
  2. <!-- Sets defaults for all projects in the repo -->
  3. <PropertyGroup>
  4. <Nullable>enable</Nullable>
  5. <CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)/jellyfin.ruleset</CodeAnalysisRuleSet>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  8. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  9. </PropertyGroup>
  10. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  11. <AnalysisMode>AllEnabledByDefault</AnalysisMode>
  12. </PropertyGroup>
  13. </Project>