|
|
|
<Project>
|
|
|
|
<!-- Common to all Prowlarr Projects -->
|
|
|
|
<PropertyGroup>
|
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
|
|
<RuntimeIdentifiers>win-x64;win-x86;osx-x64;linux-x64;linux-musl-x64;linux-arm;linux-arm64;linux-musl-arm64</RuntimeIdentifiers>
|
|
|
|
|
|
|
|
<ProwlarrRootDir>$(MSBuildThisFileDirectory)..\</ProwlarrRootDir>
|
|
|
|
|
|
|
|
<!-- Specifies the type of output -->
|
|
|
|
<ProwlarrOutputType>Library</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="$(MSBuildProjectName.Contains('.Test'))">Test</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="'$(MSBuildProjectName)'=='ServiceInstall'">Exe</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="'$(MSBuildProjectName)'=='ServiceUninstall'">Exe</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="'$(MSBuildProjectName)'=='Prowlarr'">Exe</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="'$(MSBuildProjectName)'=='Prowlarr.Console'">Exe</ProwlarrOutputType>
|
|
|
|
<ProwlarrOutputType Condition="'$(MSBuildProjectName)'=='Prowlarr.Update'">Update</ProwlarrOutputType>
|
|
|
|
|
|
|
|
<!-- Specifies whether it's one of our own libraries -->
|
|
|
|
<ProwlarrProject>false</ProwlarrProject>
|
|
|
|
<ProwlarrProject Condition="$(MSBuildProjectName.StartsWith('Prowlarr'))">true</ProwlarrProject>
|
|
|
|
<ProwlarrProject Condition="$(MSBuildProjectName.StartsWith('ServiceInstall'))">true</ProwlarrProject>
|
|
|
|
<ProwlarrProject Condition="$(MSBuildProjectName.StartsWith('ServiceUninstall'))">true</ProwlarrProject>
|
|
|
|
|
|
|
|
<!-- A test project gets the test sdk packages automatically added -->
|
|
|
|
<TestProject>false</TestProject>
|
|
|
|
<TestProject Condition="$(MSBuildProjectName.EndsWith('.Test'))">true</TestProject>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<Configuration Condition="'$(Configuration)'==''">Release</Configuration>
|
|
|
|
<!-- Centralize intermediate and default outputs -->
|
|
|
|
<BaseIntermediateOutputPath>$(ProwlarrRootDir)_temp\obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
|
|
|
|
<IntermediateOutputPath>$(ProwlarrRootDir)_temp\obj\$(MSBuildProjectName)\$(Configuration)\</IntermediateOutputPath>
|
|
|
|
<OutputPath>$(ProwlarrRootDir)_temp\bin\$(Configuration)\$(MSBuildProjectName)\</OutputPath>
|
|
|
|
|
|
|
|
<!-- Output to _output and _tests respectively -->
|
|
|
|
<OutputPath Condition="'$(ProwlarrProject)'=='true'">$(ProwlarrRootDir)_output\</OutputPath>
|
|
|
|
<OutputPath Condition="'$(ProwlarrOutputType)'=='Test'">$(ProwlarrRootDir)_tests\</OutputPath>
|
|
|
|
<OutputPath Condition="'$(ProwlarrOutputType)'=='Update'">$(ProwlarrRootDir)_output\Prowlarr.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="'$(ProwlarrOutputType)'=='Test'">
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
|
|
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
|
|
|
|
<SelfContained>false</SelfContained>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Set the Product and Version info for our own projects -->
|
|
|
|
<PropertyGroup Condition="'$(ProwlarrProject)'=='true'">
|
|
|
|
<Product>Prowlarr</Product>
|
|
|
|
<Company>prowlarr.com</Company>
|
|
|
|
<Copyright>Copyright 2014-$([System.DateTime]::Now.ToString('yyyy')) prowlarr.com (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>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Set the AssemblyConfiguration attribute for projects -->
|
|
|
|
<ItemGroup Condition="'$(ProwlarrProject)'=='true'">
|
|
|
|
<AssemblyAttribute Include="System.Reflection.AssemblyConfigurationAttribute">
|
|
|
|
<_Parameter1>$(AssemblyConfiguration)</_Parameter1>
|
|
|
|
</AssemblyAttribute>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<!-- For now keep the NzbDrone namespace -->
|
|
|
|
<RootNamespace Condition="'$(ProwlarrProject)'=='true'">$(MSBuildProjectName.Replace('Prowlarr','NzbDrone'))</RootNamespace>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(ProwlarrProject)'=='true' and '$(EnableAnalyzers)'=='false'">
|
|
|
|
<!-- FXCop Built into Net5 SDK now as NETAnalyzers, Enabled by default on net5 projects -->
|
|
|
|
<EnableNETAnalyzers>false</EnableNETAnalyzers>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<!-- Standard testing packages -->
|
|
|
|
<ItemGroup Condition="'$(TestProject)'=='true'">
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
|
|
|
<PackageReference Include="NUnit" Version="3.13.1" />
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
|
|
|
<PackageReference Include="NunitXml.TestLogger" Version="3.0.97" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.0.4-preview.27.ge7cb7c3b40" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<!-- Set up stylecop -->
|
|
|
|
<ItemGroup Condition="'$(ProwlarrProject)'=='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>
|