2020-12-31 11:09:25 +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>{7EEEB4BB-F3E8-48FC-B4C5-70F0FFF8329B}</ProjectGuid>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
|
<PackageId>Jellyfin.Model</PackageId>
|
2020-12-05 02:55:32 +00:00
|
|
|
|
<VersionPrefix>10.8.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
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
<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-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
2021-11-15 12:01:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
2021-11-08 13:55:16 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
|
2021-12-04 13:50:48 +00:00
|
|
|
|
<PackageReference Include="MimeTypes" Version="2.2.1">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2019-11-03 14:52:10 +00:00
|
|
|
|
<PackageReference Include="System.Globalization" Version="4.3.0" />
|
2021-12-15 06:47:07 +00:00
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.1" />
|
2019-01-19 14:01:16 +00:00
|
|
|
|
</ItemGroup>
|
2018-12-13 13:18:25 +00:00
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\SharedVersion.cs" />
|
|
|
|
|
</ItemGroup>
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
2020-02-04 00:49:27 +00: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 22:32:22 +00:00
|
|
|
|
<ItemGroup>
|
2021-06-19 16:02:33 +00:00
|
|
|
|
<ProjectReference Include="../Jellyfin.Data/Jellyfin.Data.csproj" />
|
|
|
|
|
<ProjectReference Include="../src/Jellyfin.Extensions/Jellyfin.Extensions.csproj" />
|
2020-05-02 22:32:22 +00:00
|
|
|
|
</ItemGroup>
|
2020-02-04 00:49:27 +00:00
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
|
</Project>
|