You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
9.6 KiB
197 lines
9.6 KiB
<Project>
|
|
<!-- Common to all Sonarr Projects -->
|
|
<PropertyGroup>
|
|
<AnalysisLevel>6.0-all</AnalysisLevel>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
<RuntimeIdentifiers>win-x64;win-x86;osx-x64;osx-arm64;linux-x64;linux-musl-x64;linux-arm;linux-arm64;linux-musl-arm64</RuntimeIdentifiers>
|
|
|
|
<SonarrRootDir>$(MSBuildThisFileDirectory)..\</SonarrRootDir>
|
|
|
|
<!-- Specifies the type of output -->
|
|
<SonarrOutputType>Library</SonarrOutputType>
|
|
<SonarrOutputType Condition="$(MSBuildProjectName.Contains('.Test'))">Test</SonarrOutputType>
|
|
<SonarrOutputType Condition="'$(MSBuildProjectName)'=='ServiceInstall'">Exe</SonarrOutputType>
|
|
<SonarrOutputType Condition="'$(MSBuildProjectName)'=='ServiceUninstall'">Exe</SonarrOutputType>
|
|
<SonarrOutputType Condition="'$(MSBuildProjectName)'=='Sonarr'">Exe</SonarrOutputType>
|
|
<SonarrOutputType Condition="'$(MSBuildProjectName)'=='Sonarr.Console'">Exe</SonarrOutputType>
|
|
<SonarrOutputType Condition="'$(MSBuildProjectName)'=='Sonarr.Update'">Update</SonarrOutputType>
|
|
|
|
<!-- Specifies whether it's one of our own libraries -->
|
|
<SonarrProject>false</SonarrProject>
|
|
<SonarrProject Condition="$(MSBuildProjectName.StartsWith('Sonarr'))">true</SonarrProject>
|
|
<SonarrProject Condition="$(MSBuildProjectName.StartsWith('ServiceInstall'))">true</SonarrProject>
|
|
<SonarrProject Condition="$(MSBuildProjectName.StartsWith('ServiceUninstall'))">true</SonarrProject>
|
|
|
|
<!-- A test project gets the test sdk packages automatically added -->
|
|
<TestProject>false</TestProject>
|
|
<TestProject Condition="$(MSBuildProjectName.EndsWith('.Test'))">true</TestProject>
|
|
|
|
<!-- XML documentation comments are needed to enforce rule IDE0005 on build -->
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<!--
|
|
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
|
|
-->
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Configuration Condition="'$(Configuration)'==''">Release</Configuration>
|
|
<!-- Centralize intermediate and default outputs -->
|
|
<BaseIntermediateOutputPath>$(SonarrRootDir)_temp\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
|
|
<IntermediateOutputPath>$(SonarrRootDir)_temp\obj\$(MSBuildProjectName)\$(Configuration)\</IntermediateOutputPath>
|
|
<OutputPath>$(SonarrRootDir)_temp\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
|
|
|
|
<!-- Output to _output and _tests respectively -->
|
|
<OutputPath Condition="'$(SonarrProject)'=='true'">$(SonarrRootDir)_output\</OutputPath>
|
|
<OutputPath Condition="'$(SonarrOutputType)'=='Test'">$(SonarrRootDir)_tests\</OutputPath>
|
|
<OutputPath Condition="'$(SonarrOutputType)'=='Update'">$(SonarrRootDir)_output\Sonarr.Update\</OutputPath>
|
|
|
|
<!-- Paths relative to project file for better readability -->
|
|
<EnableBaseIntermediateOutputPathMismatchWarning>false</EnableBaseIntermediateOutputPathMismatchWarning>
|
|
<BaseIntermediateOutputPath>$([MSBuild]::MakeRelative('$(MSBuildProjectDirectory)', '$(BaseIntermediateOutputPath)'))</BaseIntermediateOutputPath>
|
|
<IntermediateOutputPath>$([MSBuild]::MakeRelative('$(MSBuildProjectDirectory)', '$(IntermediateOutputPath)'))</IntermediateOutputPath>
|
|
<OutputPath>$([MSBuild]::MakeRelative('$(MSBuildProjectDirectory)', '$(OutputPath)'))</OutputPath>
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<!-- Test projects need bindingRedirects -->
|
|
<PropertyGroup Condition="'$(SonarrOutputType)'=='Test'">
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
|
<SelfContained>false</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<!-- Set the Product and Version info for our own projects -->
|
|
<PropertyGroup Condition="'$(SonarrProject)'=='true'">
|
|
<Product>Sonarr</Product>
|
|
<Company>sonarr.tv</Company>
|
|
<Copyright>Copyright 2014-$([System.DateTime]::Now.ToString('yyyy')) sonarr.tv (GNU General Public v3)</Copyright>
|
|
|
|
<!-- Should be replaced by CI -->
|
|
<AssemblyVersion>10.0.0.*</AssemblyVersion>
|
|
<AssemblyConfiguration>$(Configuration)-dev</AssemblyConfiguration>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
|
|
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
|
|
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
|
|
<Deterministic Condition="$(AssemblyVersion.EndsWith('*'))">False</Deterministic>
|
|
|
|
<PathMap>$(MSBuildProjectDirectory)=./$(MSBuildProjectName)/</PathMap>
|
|
</PropertyGroup>
|
|
<!-- Set the AssemblyConfiguration attribute for projects -->
|
|
<ItemGroup Condition="'$(SonarrProject)'=='true'">
|
|
<AssemblyAttribute Include="System.Reflection.AssemblyConfigurationAttribute">
|
|
<_Parameter1>$(AssemblyConfiguration)</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- For now keep the NzbDrone namespace -->
|
|
<RootNamespace Condition="'$(SonarrProject)'=='true'">$(MSBuildProjectName.Replace('Sonarr','NzbDrone'))</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(TestProject)'!='true'">
|
|
<!-- Annotates .NET assemblies with repository information including SHA -->
|
|
<!-- Sentry uses this to link directly to GitHub at the exact version/file/line -->
|
|
<!-- This is built-in on .NET 8 and can be removed once the project is updated -->
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<!-- Sentry specific configuration: Only in Release mode -->
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<!-- https://docs.sentry.io/platforms/dotnet/configuration/msbuild/ -->
|
|
<!-- OrgSlug, ProjectSlug and AuthToken are required.
|
|
They can be set below, via argument to 'msbuild -p:' or environment variable -->
|
|
<SentryOrg></SentryOrg>
|
|
<SentryProject></SentryProject>
|
|
<SentryUrl></SentryUrl> <!-- If empty, assumed to be sentry.io -->
|
|
<SentryAuthToken></SentryAuthToken> <!-- Use env var instead: SENTRY_AUTH_TOKEN -->
|
|
|
|
<!-- Upload PDBs to Sentry, enabling stack traces with line numbers and file paths
|
|
without the need to deploy the application with PDBs -->
|
|
<SentryUploadSymbols>true</SentryUploadSymbols>
|
|
|
|
<!-- Source Link settings -->
|
|
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#publishrepositoryurl -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<!-- Embeds all source code in the respective PDB. This can make it a bit bigger but since it'll be uploaded
|
|
to Sentry and not distributed to run on the server, it helps debug crashes while making releases smaller -->
|
|
<EmbedAllSources>true</EmbedAllSources>
|
|
</PropertyGroup>
|
|
|
|
<!-- Standard testing packages -->
|
|
<ItemGroup Condition="'$(TestProject)'=='true'">
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
|
<PackageReference Include="NunitXml.TestLogger" Version="3.0.131" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TestProject)'=='true' and '$(TargetFramework)'=='net6.0'">
|
|
<PackageReference Include="coverlet.collector" Version="3.0.4-preview.27.ge7cb7c3b40" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="'$(SonarrProject)'=='true' and '$(EnableAnalyzers)'=='false'">
|
|
<!-- FXCop Built into Net5 SDK now as NETAnalyzers, Enabled by default on net5 projects -->
|
|
<EnableNETAnalyzers>false</EnableNETAnalyzers>
|
|
</PropertyGroup>
|
|
|
|
<!-- Set up stylecop -->
|
|
<ItemGroup Condition="'$(SonarrProject)'=='true' and '$(EnableAnalyzers)'!='false'">
|
|
<!-- StyleCop analysis -->
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
<AdditionalFiles Include="$(SolutionDir)stylecop.json" />
|
|
</ItemGroup>
|
|
|
|
<!--
|
|
Set runtime identifier to local system type if not specified
|
|
-->
|
|
<Choose>
|
|
<When Condition="'$(OS)' == 'Windows_NT'">
|
|
<PropertyGroup>
|
|
<IsWindows>true</IsWindows>
|
|
</PropertyGroup>
|
|
</When>
|
|
<When Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">
|
|
<PropertyGroup>
|
|
<IsOSX>true</IsOSX>
|
|
</PropertyGroup>
|
|
</When>
|
|
<Otherwise>
|
|
<PropertyGroup>
|
|
<IsLinux>true</IsLinux>
|
|
</PropertyGroup>
|
|
</Otherwise>
|
|
</Choose>
|
|
|
|
<PropertyGroup Condition="'$(IsWindows)' == 'true' and
|
|
'$(RuntimeIdentifier)' == ''">
|
|
<_UsingDefaultRuntimeIdentifier>true</_UsingDefaultRuntimeIdentifier>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsLinux)' == 'true' and
|
|
'$(RuntimeIdentifier)' == ''">
|
|
<_UsingDefaultRuntimeIdentifier>true</_UsingDefaultRuntimeIdentifier>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsOSX)' == 'true' and
|
|
'$(RuntimeIdentifier)' == ''">
|
|
<_UsingDefaultRuntimeIdentifier>true</_UsingDefaultRuntimeIdentifier>
|
|
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|