A command line tool that compares two versions of a NuGet package and provides public API differences
Перейти к файлу
Jérôme Laban 94d9245559
Merge pull request #23 from unoplatform/dependabot/nuget/src/Uno.PackageDiff/NuGet.Protocol-6.3.3
chore(deps): Bump NuGet.Protocol from 6.3.1 to 6.3.3 in /src/Uno.PackageDiff
2023-06-14 14:59:55 -04:00
.github Initial commit 2019-02-24 23:34:37 -05:00
build ci: Updated sign client 2022-04-12 13:28:31 -04:00
src chore(deps): Bump NuGet.Protocol in /src/Uno.PackageDiff 2023-06-14 16:45:18 +00:00
.editorconfig Add CI Support 2019-02-25 08:35:22 -05:00
.gitignore Initial commit 2019-02-24 23:34:37 -05:00
.vsts-ci.yml ci: Adjust build agents 2023-05-18 11:08:52 -04:00
CODE_OF_CONDUCT.md Initial commit 2019-02-24 23:34:37 -05:00
CONTRIBUTING.md Initial commit 2019-02-24 23:34:37 -05:00
License.md Initial commit 2019-02-24 23:34:37 -05:00
README.md docs: Update README.md 2023-05-15 21:24:20 +03:00
gitversion.yml ci: Move to main branch 2022-04-12 13:28:31 -04:00

README.md

NuGet Package Diffing Tool

A command line tool that compares two versions of a NuGet package and provides public API differences.

This tool has originally been built to fail a build when a breaking change is detected, using a published nuget package (in nuget.org) and a local NuGet package.

Installing

Run the following command from command line (requires .NET Core 2.1 installed):

dotnet tool install --global Uno.PackageDiff

Diffing packages

generatepkgdiff --base=Uno.UI --other=C:\temp\Uno.UI.1.43.0-PullRequest0621.917.nupkg --outfile=diff.md

The tool returns a non-zero value when differences are found, otherwise zero.

How to provide an ignore set

The diff tool accepts a "ignore set" file which gives the ability to ignore specific differences. Those differences appear strike-out in the resulting markdown file.

Here's the format:

<DiffIgnore>
  <IgnoreSets>
    <IgnoreSet baseVersion="1.0.0">
      <Types>
        <Member fullName="MyNamespace.MyMissingClass" />
      </Types>
      <Properties>
        <Member fullName="MyNamespace.MyClass.MyProperty" />
      </Properties>
      <Fields>
        <Member fullName="MyNamespace.MyClass.myField" />
      </Fields>
      <Events>
        <Member fullName="MyNamespace.MyClass.MyEvent" />
      </Events>
      <Methods>
        <Member fullName="MyNamespace.MyClass.MyMethod" />
      </Methods>
      <Methods>
        <Member fullName="MyNamespace.MyClass.MyMethod" />
      </Methods>
      <Assemblies>
        <Member fullName="MyMissingAssemblyName" />
      </Assemblies>
    </IgnoreSet>
  </IgnoreSets>
</DiffIgnore>

The baseVersion attribute denotes the version for which the Ignore Set has been authored. This enables for the automatic discarding of existing sets when a new package version is published in nuget.org.

The fullname of members should be the exact string provided in the markdown file when a difference is identified.

You can also specifiy isRegex="true" to a Member, and the fullName will be treated as a Regex pattern to match against.