jellyfin/MediaBrowser.Model/MediaBrowser.Model.csproj

57 lines
2.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-12-27 18:27:57 -05:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Model</PackageId>
<VersionPrefix>10.8.0</VersionPrefix>
2019-01-19 09:01:16 -05:00
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
2020-08-26 09:39:01 -04:00
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
2019-01-19 09:01:16 -05:00
</PropertyGroup>
2019-01-19 09:01:16 -05:00
<PropertyGroup>
2020-11-10 11:52:34 -05:00
<TargetFramework>net5.0</TargetFramework>
2019-01-19 09:01:16 -05:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Nullable>enable</Nullable>
2021-03-08 21:04:47 -05:00
<!-- <AnalysisMode>AllEnabledByDefault</AnalysisMode> -->
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition=" '$(Stability)'=='Unstable'">
<!-- Include all symbols in the main nupkg until Azure Artifact Feed starts supporting ingesting NuGet symbol packages. -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
2019-01-19 09:01:16 -05:00
</PropertyGroup>
2018-12-27 18:27:57 -05:00
2019-01-19 09:01:16 -05:00
<ItemGroup>
2020-11-10 11:52:34 -05:00
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
2019-11-03 09:52:10 -05:00
<PackageReference Include="System.Globalization" Version="4.3.0" />
2021-04-08 09:36:13 -04:00
<PackageReference Include="System.Text.Json" Version="5.0.2" />
2019-01-19 09:01:16 -05:00
</ItemGroup>
2019-01-19 09:01:16 -05:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-12-27 18:27:57 -05:00
2020-02-03 19:49:27 -05:00
<!-- Code Analyzers-->
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
</ItemGroup>
2020-05-02 18:32:22 -04:00
<ItemGroup>
<ProjectReference Include="..\Jellyfin.Data\Jellyfin.Data.csproj" />
</ItemGroup>
2020-02-03 19:49:27 -05:00
2018-12-27 18:27:57 -05:00
</Project>