jellyfin/Emby.Naming/Emby.Naming.csproj

60 lines
2.5 KiB
XML
Raw Normal View History

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