2021-08-12 22:33:18 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-09-12 17:26:21 +00:00
|
|
|
|
2020-04-21 20:21:09 +00:00
|
|
|
<!-- ProjectGuid is only included as a requirement for SonarQube analysis -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<ProjectGuid>{E5AF7B26-2239-4CE0-B477-0AA2018EDAA2}</ProjectGuid>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<PropertyGroup>
|
2023-10-23 21:36:56 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-01-19 14:01:16 +00:00
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
2019-11-04 20:57:57 +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-12-13 19:11:37 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
2021-05-16 12:54:36 +00:00
|
|
|
<Compile Include="../SharedVersion.cs" />
|
2019-01-19 14:01:16 +00:00
|
|
|
</ItemGroup>
|
2019-01-13 19:45:51 +00:00
|
|
|
|
2019-01-19 14:01:16 +00:00
|
|
|
<ItemGroup>
|
2021-05-16 12:54:36 +00:00
|
|
|
<ProjectReference Include="../MediaBrowser.Common/MediaBrowser.Common.csproj" />
|
|
|
|
<ProjectReference Include="../MediaBrowser.Model/MediaBrowser.Model.csproj" />
|
2019-01-19 14:01:16 +00:00
|
|
|
</ItemGroup>
|
2019-01-06 20:50:43 +00:00
|
|
|
|
2019-01-14 21:02:51 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<Authors>Jellyfin Contributors</Authors>
|
|
|
|
<PackageId>Jellyfin.Naming</PackageId>
|
2024-05-11 18:23:59 +00:00
|
|
|
<VersionPrefix>10.10.0</VersionPrefix>
|
2019-01-14 21:02:51 +00:00
|
|
|
<RepositoryUrl>https://github.com/jellyfin/jellyfin</RepositoryUrl>
|
2020-08-26 13:39:01 +00:00
|
|
|
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
|
2019-05-10 18:37:42 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-11-05 01:01:14 +00:00
|
|
|
<!-- Code Analyzers -->
|
2019-05-10 18:37:42 +00:00
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
|
2023-11-05 01:01:14 +00:00
|
|
|
<PackageReference Include="IDisposableAnalyzers">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers">
|
2022-01-22 15:48:31 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-04 17:15:08 +00:00
|
|
|
<PackageReference Include="SerilogAnalyzer" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="All" />
|
|
|
|
<PackageReference Include="SmartAnalyzers.MultithreadingAnalyzer" PrivateAssets="All" />
|
2019-05-10 18:37:42 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2018-12-12 20:17:48 +00:00
|
|
|
</Project>
|