The RunApiDiff.ps1
script can automatically generate an API comparison report for two specified .NET previews, in the format expected for publishing in the dotnet/core repo.
- Clone the dotnet/arcade repo. Let's assume you clone it into
D:\arcade
. - Clone the dotnet/core repo. Let's assume you clone it into
D:\core
. - Create a temporary directory. Let's assume you create it in
D:\tmp
. - Run the command. Execution example:
.\RunApiDiff.ps1 `
-PreviousDotNetVersion 7.0 `
-PreviousPreviewOrRC preview `
-PreviousPreviewNumberVersion 2 `
-CurrentDotNetVersion 7.0 `
-CurrentPreviewOrRC preview `
-CurrentPreviewNumberVersion 3 `
-CoreRepo D:\core\ `
-ArcadeRepo D:\arcade\ `
-TmpFolder D:\tmp\
Examples of what this script generates:
- PR comparing .NET 6.0 vs .NET 7.0 Preview1: dotnet#7211
- PR comparing .NET 7.0 Preview1 vs Preview2: dotnet#7307