Skip to content

Commit ff31390

Browse files
authored
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 #4373
1 parent 77e6be4 commit ff31390

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/Mvc/Mvc.Analyzers/src/Microsoft.AspNetCore.Mvc.Analyzers.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<PropertyGroup>
33
<Description>CSharp Analyzers for ASP.NET Core MVC.</Description>
44
<PackageTags>aspnetcore;aspnetcoremvc</PackageTags>
5-
<IsShippingPackage>true</IsShippingPackage>
5+
<!-- This package is for internal use only. It contains analyzers that are bundled in the .NET Core WebSDK. -->
6+
<IsShippingPackage>false</IsShippingPackage>
67

78
<TargetFramework>netstandard1.3</TargetFramework>
89
<IncludeBuildOutput>false</IncludeBuildOutput>

src/Mvc/Mvc.Api.Analyzers/src/Microsoft.AspNetCore.Mvc.Api.Analyzers.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<PropertyGroup>
33
<Description>CSharp Analyzers for ASP.NET Core MVC.</Description>
44
<PackageTags>aspnetcore;aspnetcoremvc</PackageTags>
5-
<IsShippingPackage>true</IsShippingPackage>
5+
<!-- This package is for internal use only. It contains analyzers that are bundled in the .NET Core WebSDK. -->
6+
<IsShippingPackage>false</IsShippingPackage>
67

78
<TargetFramework>netstandard1.3</TargetFramework>
89
<IncludeBuildOutput>false</IncludeBuildOutput>

0 commit comments

Comments
 (0)