Skip to content

Commit

Permalink
fix(dotnet/roslyn): analyzer target framework (#1071)
Browse files Browse the repository at this point in the history
The Roslyn analyzer target framework must be set to `netstandard2.0` or
it will not successfully load up in Visual Studio.

Fixes aws/aws-cdk#5189
  • Loading branch information
RomainMuller authored and mergify[bot] committed Nov 26, 2019
1 parent 6e0a7e6 commit fea0f0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<PackageId>Amazon.JSII.Analyzers</PackageId>
<Title>.NET Roslyn Analyzers for JSII</Title>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
Expand Down

0 comments on commit fea0f0a

Please sign in to comment.