2dcb2f8a9f
If the calling function can't be made async easily you can still use .GetAwaiter().GetResult(), which is way easier to find in the future
22 lines
564 B
XML
22 lines
564 B
XML
<Project>
|
|
<!-- Sets defaults for all projects in the repo -->
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)/jellyfin.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="$(SolutionDir)/BannedSymbols.txt" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|