1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-14 16:55:21 +02:00

Disable stylecop for backend build on azure

Co-Authored-By: ta264 <ta264@users.noreply.github.com>
This commit is contained in:
Qstick 2020-08-20 21:58:38 -04:00
parent 60ff140e7f
commit acd167e3ff
2 changed files with 4 additions and 1 deletions

View File

@ -68,6 +68,9 @@ stages:
pool: pool:
vmImage: $(imageName) vmImage: $(imageName)
variables:
# Disable stylecop here - linting errors get caught by the analyze task
EnableAnalyzers: 'false'
steps: steps:
- checkout: self - checkout: self
submodules: true submodules: true

View File

@ -91,7 +91,7 @@
</ItemGroup> </ItemGroup>
<!-- Set up stylecop --> <!-- Set up stylecop -->
<ItemGroup Condition="'$(RadarrProject)'=='true'"> <ItemGroup Condition="'$(RadarrProject)'=='true' and '$(EnableAnalyzers)'!='false'">
<!-- StyleCop analysis --> <!-- StyleCop analysis -->
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0-beta2.final"> <PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.0-beta2.final">
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>