Mark Mvc analyzers as non-shipping (#8968)

Since these analyzers are now available via the WebSDK, we no longer
need to ship these.

Follow up to https://github.com/aspnet/AspNetCore/issues/4373
This commit is contained in:
Pranav K 2019-04-01 15:52:15 -07:00 committed by GitHub
parent 77e6be4c28
commit ff313901de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,8 @@
<PropertyGroup>
<Description>CSharp Analyzers for ASP.NET Core MVC.</Description>
<PackageTags>aspnetcore;aspnetcoremvc</PackageTags>
<IsShippingPackage>true</IsShippingPackage>
<!-- This package is for internal use only. It contains analyzers that are bundled in the .NET Core WebSDK. -->
<IsShippingPackage>false</IsShippingPackage>
<TargetFramework>netstandard1.3</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>

View File

@ -2,7 +2,8 @@
<PropertyGroup>
<Description>CSharp Analyzers for ASP.NET Core MVC.</Description>
<PackageTags>aspnetcore;aspnetcoremvc</PackageTags>
<IsShippingPackage>true</IsShippingPackage>
<!-- This package is for internal use only. It contains analyzers that are bundled in the .NET Core WebSDK. -->
<IsShippingPackage>false</IsShippingPackage>
<TargetFramework>netstandard1.3</TargetFramework>
<IncludeBuildOutput>false</IncludeBuildOutput>