2020-11-01 09:47:31 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
<PackageId>Jellyfin.Common</PackageId>
|
2022-07-14 03:00:23 +00:00
|
|
|
<VersionPrefix>10.9.0</VersionPrefix>
|
2019-01-19 14:01:16 +00:00
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2020-08-26 13:39:01 +00:00
|
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
2019-01-19 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2019-01-07 15:58:33 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
2021-03-05 14:48:45 +00:00
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
2019-01-19 14:01:16 +00:00
|
|
|
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
|
|
|
|
</ItemGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-02-03 16:09:12 +00:00
|
|
|
<ItemGroup>
|
2021-11-08 13:55:16 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
|
2021-11-15 12:01:08 +00:00
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2019-02-03 16:09:12 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
</ItemGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
2021-02-14 14:11:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-08-11 14:52:37 +00:00
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
2020-09-02 20:42:00 +00:00
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-12-24 17:28:27 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-12-05 12:54:28 +00:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2021-12-24 17:28:27 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-09-02 20:42:00 +00:00
|
|
|
<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 14:01:16 +00:00
|
|
|
</PropertyGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2019-12-10 23:13:57 +00:00
|
|
|
<!-- Code analyzers-->
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2022-01-22 15:48:31 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2019-12-10 23:13:57 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" Version="0.15.0" PrivateAssets="All" />
|
2022-05-09 13:24:09 +00:00
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
|
2019-12-10 23:13:57 +00:00
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2019-09-17 16:07:15 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
|
|
<_Parameter1>Jellyfin.Common.Tests</_Parameter1>
|
|
|
|
</AssemblyAttribute>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
</Project>
|