jellyfin/MediaBrowser.Common/MediaBrowser.Common.csproj

60 lines
2.4 KiB
XML
Raw Normal View History

2020-11-01 10:47:31 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2018-12-28 00:27:57 +01:00
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
<PropertyGroup>
<ProjectGuid>{9142EEFA-7570-41E1-BFCC-468BB571AF2F}</ProjectGuid>
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<PropertyGroup>
<Authors>Jellyfin Contributors</Authors>
<PackageId>Jellyfin.Common</PackageId>
<VersionPrefix>10.8.0</VersionPrefix>
2019-01-19 15:01:16 +01:00
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
2020-08-26 15:39:01 +02:00
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
2019-01-19 15:01:16 +01:00
</PropertyGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
2021-03-05 15:48:45 +01:00
<FrameworkReference Include="Microsoft.AspNetCore.App" />
2019-01-19 15:01:16 +01:00
<ProjectReference Include="..\MediaBrowser.Model\MediaBrowser.Model.csproj" />
</ItemGroup>
2018-12-28 00:27:57 +01:00
<ItemGroup>
2021-11-08 14:55:16 +01:00
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
2019-01-19 15:01:16 +01:00
<ItemGroup>
<Compile Include="..\SharedVersion.cs" />
</ItemGroup>
2018-12-28 00:27:57 +01:00
2019-01-19 15:01:16 +01:00
<PropertyGroup>
2021-02-14 15:11:46 +01:00
<TargetFramework>net6.0</TargetFramework>
2019-01-19 15:01:16 +01:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<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 15:01:16 +01:00
</PropertyGroup>
2018-12-28 00:27:57 +01:00
2019-12-11 00:13:57 +01: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" />
2019-12-11 00:13:57 +01:00
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Jellyfin.Common.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
2018-12-28 00:27:57 +01:00
</Project>