Skip to content

Commit

Permalink
chore(deps): bump PublicApiGenerator from 10.3.0 to 11.0.0 in /src (#260
Browse files Browse the repository at this point in the history
)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Chris Pulman <chris.pulman@yahoo.com>
  • Loading branch information
dependabot[bot] and ChrisPulman committed May 12, 2023
1 parent 7aca113 commit 113a88b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Directory.build.props
Expand Up @@ -40,7 +40,7 @@
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="DiffEngine" Version="11.3.0" />
<PackageReference Include="PublicApiGenerator" Version="10.3.0" />
<PackageReference Include="PublicApiGenerator" Version="11.0.0" />
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/Punchclock.Tests/API/ApiApprovalTests.cs
Expand Up @@ -59,7 +59,7 @@ private static void CheckApproval(Assembly assembly, [CallerMemberName] string m

var approvedPublicApi = File.ReadAllText(approvedFileName);

var generatorOptions = new ApiGeneratorOptions { WhitelistedNamespacePrefixes = new[] { "Akavache" } };
var generatorOptions = new ApiGeneratorOptions { AllowNamespacePrefixes = new[] { "Akavache" } };
var receivedPublicApi = Filter(assembly.GeneratePublicApi(generatorOptions));

if (!string.Equals(receivedPublicApi, approvedPublicApi, StringComparison.InvariantCulture))
Expand Down

0 comments on commit 113a88b

Please sign in to comment.