Skip to content

Commit

Permalink
Fix dependency
Browse files Browse the repository at this point in the history
Fix Microsoft.CodeAnalysis.PublicApiAnalyzers being incorrectly included as a dependency of projects consuming the package.
  • Loading branch information
martincostello committed Feb 3, 2024
1 parent 08ffee7 commit d940e9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" VersionOverride="8.0.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" />
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="PublicAPI\PublicAPI.Shipped.txt" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Description>Tests for MartinCostello.BrowserStack.Automate.</Description>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>$(NoWarn);CA1707;CA2007;SA1600;RS0016;RS0037</NoWarn>
<NoWarn>$(NoWarn);CA1707;CA2007;SA1600</NoWarn>
<RootNamespace>MartinCostello.BrowserStack.Automate</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>MartinCostello.BrowserStack.Automate</UserSecretsId>
Expand Down

0 comments on commit d940e9c

Please sign in to comment.