XrmToolSuite.EnvironmentComparisonSuite 1.2026.7.10

dotnet add package XrmToolSuite.EnvironmentComparisonSuite --version 1.2026.7.10
                    
NuGet\Install-Package XrmToolSuite.EnvironmentComparisonSuite -Version 1.2026.7.10
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XrmToolSuite.EnvironmentComparisonSuite" Version="1.2026.7.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XrmToolSuite.EnvironmentComparisonSuite" Version="1.2026.7.10" />
                    
Directory.Packages.props
<PackageReference Include="XrmToolSuite.EnvironmentComparisonSuite" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XrmToolSuite.EnvironmentComparisonSuite --version 1.2026.7.10
                    
#r "nuget: XrmToolSuite.EnvironmentComparisonSuite, 1.2026.7.10"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package XrmToolSuite.EnvironmentComparisonSuite@1.2026.7.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XrmToolSuite.EnvironmentComparisonSuite&version=1.2026.7.10
                    
Install as a Cake Addin
#tool nuget:?package=XrmToolSuite.EnvironmentComparisonSuite&version=1.2026.7.10
                    
Install as a Cake Tool

⚖️ Environment Comparison Suite

An XrmToolBox plugin that compares a source and a target Dataverse environment across every component class, classifies each difference (Missing / Extra / Changed / Managed-vs-Unmanaged), rolls up a weighted difference score with severities, and exports the comparison report. Use it to validate a release, explain a support incident, and see exactly what drifted. Read-only: it never writes to either environment, and secret-typed values are masked everywhere.

Features

Area What is compared
Solutions & publishers Solution versions, publishers/prefixes, and managed/unmanaged layering drift.
Schema Tables, columns, relationships, and alternate keys — classified Missing/Extra/Changed, with changed-property lists (datatype, required level, cascade).
UI configuration Forms, views, charts, and dashboards; large FormXML/LayoutXML is compared by stable content hash, not raw XML.
Security Roles compared by privilege set (a stable hash of sorted privilege+depth pairs, not just name); teams, business units, and users.
Automation & code Plugin assemblies, steps (matched by message+entity+stage), images, workflows, business rules, flows, and custom APIs.
Bindings & content Environment-variable definitions/values, connection-reference bindings, and web-resource/JavaScript content hashes.
Classification & score Every component classified via ismanaged/layering; an overall weighted difference score with severities Critical/High/Medium/Low/Info.
Review A difference grid filterable by category/classification/severity and a side-by-side before/after detail viewer for source vs target, with a severity-ordered recommendation panel.

A component-category selector scopes a run: unselected classes are skipped and never retrieved. The diff engine is UI-free/SDK-free and unit-tested; the Dataverse collector is fail-soft per category (a query or permission gap degrades to an informational finding), pages via RetrieveAll, runs off the UI thread, and reports progress per category.

Exports

Run off the UI thread; masked values stay masked in every export.

Format Notes
Excel Via the shared reporters.
PDF Native PDF via the shared reporters.
JSON Machine-readable comparison payload.
HTML Self-contained, theme-aware (light/dark), opens offline.

Help & Support

A Help button (right of the toolbar) opens a Help & Support dialog with Documentation, Report an issue, and a support link, each opened via Process.Start. The tool implements IHelpPlugin and IGitHubPlugin, so XrmToolBox's own tool-menu links resolve to the same GitHub project (kkora/XrmToolSuite).

Build & install

This tool is not a single-DLL tool — it ships the Excel/PDF export dependency chain (the tool DLL plus its ClosedXML + PdfSharp/MigraDoc-GDI dependency DLLs, flat in the Plugins root, never a subfolder). The one-step build copies the whole chain for you:

dotnet build src\Tools\XrmToolSuite.EnvironmentComparisonSuite\XrmToolSuite.EnvironmentComparisonSuite.csproj -c Release -p:DeployToXTB=true

Then restart XrmToolBox and open Environment Comparison Suite. Full build/install/troubleshooting details are in ./DEPLOYMENT.md; the suite-wide guide (including why the export DLLs must sit in the Plugins root) is in ../../../Deployment_Guide_XrmToolBox.md.

Usage

  1. Connect to your source environment as the primary connection.
  2. Add the target environment via the dual-connection prompt (TargetOrganization) — the primary connection is not replaced.
  3. Toggle the component categories you want to compare.
  4. Run the comparison — both loads run off the UI thread with progress and cancellation.
  5. Filter the difference grid, inspect changes in the side-by-side viewer, review the recommendations, then Export (Excel/PDF/JSON/HTML).

Notes & limitations

  • Read-only — the tool never writes to either environment.
  • Secret-typed environment-variable values are masked in the grid, the detail viewer, and every export; a value change is still detected via the masked placeholder.
  • The target uses the suite dual-connection pattern (RaiseRequestConnectionEvent with actionName="TargetOrganization", handled in UpdateConnection without replacing the primary).
  • Large FormXML/LayoutXML/web-resource content is compared by content hash, so a definition change is detected without storing or exporting the payload.
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2026.7.10 98 7/11/2026
1.2026.7.9 108 7/11/2026
1.2026.7.8 109 7/11/2026
1.2026.7.7 97 7/11/2026
1.2026.7.6 105 7/10/2026
1.2026.7.5 101 7/9/2026
1.2026.7.3 103 7/7/2026

1.2026.7.10: Package health - deterministic CI builds with SourceLink and embedded symbols (PDB inside the DLL), and the package now links its GitHub source repository. No functional change to any tool.