Directory.Build.props 429 B

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