DiffLib
DiffLib copied to clipboard
A simple but powerful diff and merge class library for .NET, written in C#
With the release for .NET Core 2.0 and .NET Standard 2.0 I want to see if I need to add support specifically for this.
I tried to merge the following scenario: base: {} left: {a} right: {} {b} This is what I want to happen: base: {} left: {a} right: {} {b} merged: {a}...
Before [2017.7.26.1241](https://github.com/lassevk/DiffLib/releases/tag/version%2F2017.7.26.1241)), adding a reference to the .NET Standard 1.0 version of DiffLib also added a ton of references to other standard shim assemblies. Almost none of those provide code...
This samples show the basic power of this DiffLib and is provided as VB.NET:  ``` vb.net Option Explicit On Option Strict On Imports DiffLib Module Module1 Sub Main() Const...