Skip to content

Commit 91ad6e2

Browse files
build(deps): bump PublicApiGenerator from 10.3.0 to 11.0.0 in /src (#520)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Chris Pulman <[email protected]>
1 parent 14b9061 commit 91ad6e2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ReactiveUI.Validation.Tests/API/ApiApprovalTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ private static void CheckApproval(Assembly assembly, [CallerMemberName]string me
5353

5454
var approvedPublicApi = File.ReadAllText(approvedFileName);
5555

56-
var generatorOptions = new ApiGeneratorOptions { WhitelistedNamespacePrefixes = new[] { "ReactiveUI.Validation" } };
56+
var generatorOptions = new ApiGeneratorOptions { AllowNamespacePrefixes = new[] { "ReactiveUI.Validation" } };
5757
var receivedPublicApi = Filter(assembly.GeneratePublicApi(generatorOptions));
5858

5959
if (!string.Equals(receivedPublicApi, approvedPublicApi, StringComparison.InvariantCulture))
@@ -80,4 +80,4 @@ private static string Filter(string text)
8080
!l.StartsWith("[assembly: AssemblyInformationalVersion(", StringComparison.InvariantCulture) &&
8181
!string.IsNullOrWhiteSpace(l)));
8282
}
83-
}
83+
}

src/ReactiveUI.Validation.Tests/ReactiveUI.Validation.Tests.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="MSBuild.Sdk.Extras">
1+
<Project Sdk="MSBuild.Sdk.Extras">
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
@@ -15,14 +15,14 @@
1515
<PackageReference Include="xunit" Version="2.4.2" />
1616
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
1717
<PackageReference Include="Microsoft.Reactive.Testing" Version="5.0.0" />
18-
<PackageReference Include="PublicApiGenerator" Version="10.3.0" />
18+
<PackageReference Include="PublicApiGenerator" Version="11.0.0" />
1919
<PackageReference Include="xunit.runner.console" Version="2.4.2" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5" />
2121
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
2222
<PrivateAssets>all</PrivateAssets>
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2424
</PackageReference>
25-
<PackageReference Include="DiffEngine" Version="11.2.0" />
25+
<PackageReference Include="DiffEngine" Version="11.3.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

0 commit comments

Comments
 (0)