ApiDiffChecker 0.1.22
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ApiDiffChecker --version 0.1.22
NuGet\Install-Package ApiDiffChecker -Version 0.1.22
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="ApiDiffChecker" Version="0.1.22" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ApiDiffChecker" Version="0.1.22" />
<PackageReference Include="ApiDiffChecker" />
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 ApiDiffChecker --version 0.1.22
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ApiDiffChecker, 0.1.22"
#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 ApiDiffChecker@0.1.22
#: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=ApiDiffChecker&version=0.1.22
#tool nuget:?package=ApiDiffChecker&version=0.1.22
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
API Diff Checker
A simple API Testing tool to compare the differences in responses between 2 different origins.
- Easily check how your local environment compares to your test server
- Verify that any refactoring work did not introduce any accidental changes
Setup
Setup dependency injection
if (builder.Environment.IsDevelopment())
{
builder.Services.AddApiDiffChecker(
ApiDiffCheckerSettings.GetSettingsFromJson(
jsonPath: $"{Environment.CurrentDirectory}/apiDiffChecker.json",
baseUrl1: "https://localhost:44371",
baseUrl2: "https://www.my-test-server.com"));
}
Add endpoints used by ApiDiffChecker
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
// ApiDiffChecker Endpoints
app.AddApiDiffCheckerEndpoints();
}
Add a new profile to launchSettings.json
{
"ApiDiffChecker": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "api-diff-checker",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
Powered by
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.1)
- Swashbuckle (>= 5.0.0)
- Swashbuckle.AspNetCore (>= 6.3.0)
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 |
|---|---|---|
| 0.1.30 | 299 | 1/15/2024 |
| 0.1.29 | 210 | 1/15/2024 |
| 0.1.28 | 206 | 1/14/2024 |
| 0.1.27 | 206 | 1/14/2024 |
| 0.1.26 | 211 | 1/14/2024 |
| 0.1.25 | 193 | 1/14/2024 |
| 0.1.24 | 203 | 1/14/2024 |
| 0.1.23 | 216 | 1/14/2024 |
| 0.1.22 | 206 | 1/14/2024 |
| 0.1.21 | 212 | 1/14/2024 |
| 0.1.20 | 223 | 1/14/2024 |
| 0.1.19 | 205 | 1/14/2024 |
| 0.1.6 | 200 | 1/14/2024 |
| 0.1.5 | 209 | 1/12/2024 |
| 0.0.0.77 | 199 | 1/14/2024 |
| 0.0.0.74 | 213 | 1/14/2024 |
| 0.0.0.72 | 195 | 1/14/2024 |
| 0.0.0.71 | 195 | 1/14/2024 |
| 0.0.0.61 | 209 | 1/14/2024 |
| 0.0.0.7 | 204 | 1/14/2024 |
Loading failed