2019-03-07 11:04:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
2020-04-21 13:21:09 -07:00
|
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<ProjectGuid>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
|
<PackageId>Jellyfin.Common</PackageId>
|
2020-08-13 10:03:24 -07:00
|
|
|
|
<VersionPrefix>10.7.0</VersionPrefix>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2020-08-26 06:39:01 -07:00
|
|
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
</PropertyGroup>
|
2019-01-07 08:58:33 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
|
</ItemGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
2019-02-03 09:09:12 -07:00
|
|
|
|
<ItemGroup>
|
2020-10-13 17:50:04 -07:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="3.1.9" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.9" />
|
2020-09-02 13:42:00 -07:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
|
2019-12-10 16:13:57 -07:00
|
|
|
|
<PackageReference Include="Microsoft.Net.Http.Headers" Version="2.2.8" />
|
2019-02-03 09:09:12 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
|
</ItemGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<PropertyGroup>
|
2019-10-18 15:22:08 -07:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2019-01-19 07:01:16 -07:00
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 07:52:37 -07:00
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2019-10-09 08:10:16 -07:00
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-09-02 13:42:00 -07:00
|
|
|
|
<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 07:01:16 -07:00
|
|
|
|
</PropertyGroup>
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
2019-12-10 16:13:57 -07:00
|
|
|
|
<!-- Code analyzers-->
|
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2020-04-02 08:00:28 -07:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" PrivateAssets="All" />
|
2019-12-10 16:13:57 -07:00
|
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2020-06-03 04:04:45 -07:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" PrivateAssets="All" />
|
2019-12-10 16:13:57 -07:00
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<CodeAnalysisRuleSet>../jellyfin.ruleset</CodeAnalysisRuleSet>
|
2019-08-16 08:37:40 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-09-17 09:07:15 -07:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
|
<_Parameter1>Jellyfin.Common.Tests</_Parameter1>
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
|
</Project>
|