JsonDiffPatchExtensions 0.0.1
dotnet add package JsonDiffPatchExtensions --version 0.0.1
NuGet\Install-Package JsonDiffPatchExtensions -Version 0.0.1
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="JsonDiffPatchExtensions" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JsonDiffPatchExtensions --version 0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JsonDiffPatchExtensions, 0.0.1"
#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.
// Install JsonDiffPatchExtensions as a Cake Addin #addin nuget:?package=JsonDiffPatchExtensions&version=0.0.1 // Install JsonDiffPatchExtensions as a Cake Tool #tool nuget:?package=JsonDiffPatchExtensions&version=0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
JsonDiffPatchExtensions
some extensions to jsondiffpatch dotnet to allow ignoring specific fields
Ignore Properties
[Fact]
public void JsonDiffPatchWrapper_IgnoreDiff_Ok()
{
var objectOne = new {
TestField = "hello",
A = "A"
};
var objectTwo = new {
TestField = "hello"
};
var diffObj = JsonDiffPatchWrapper.DiffIgnoreProperties(
OldResult.From(objectOne),
NewResult.From(objectTwo),
ignoreProperties: "A");
Assert.Null(diffObj);
}
Ignore casing in diffs
[Fact]
public void JsonDiffPatchWrapper_IgnoreCasing_Ok()
{
var objectOne = new {
TestField = "hello",
A = "HELLO"
};
var objectTwo = new {
TestField = "hello",
A = "hello"
};
var diffObj = JsonDiffPatchWrapper.DiffIgnoreCasingInValuesForProperties(
OldResult.From(objectOne),
NewResult.From(objectTwo),
ignoreCasingForProperties: "A");
Assert.Null(diffObj);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- JsonDiffPatch.Net (>= 2.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.0.1 | 273 | 11/26/2023 |