UndoService 2.1.3-alpha

This is a prerelease version of UndoService.
There is a newer version of this package available.
See the version list below for details.
dotnet add package UndoService --version 2.1.3-alpha
NuGet\Install-Package UndoService -Version 2.1.3-alpha
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="UndoService" Version="2.1.3-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UndoService --version 2.1.3-alpha
#r "nuget: UndoService, 2.1.3-alpha"
#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 UndoService as a Cake Addin
#addin nuget:?package=UndoService&version=2.1.3-alpha&prerelease

// Install UndoService as a Cake Tool
#tool nuget:?package=UndoService&version=2.1.3-alpha&prerelease

Simple undo/redo service based on the momento pattern. It uses delegates to access state. It can track changes to different parts of the application individually, while using one unified interface for performing undo/redo. This reduces the memory imprint and facilitates modular design. See the unit tests in the source repository for examples of how to use.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

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
2.3.2 1,211 11/17/2020
2.3.1 456 7/22/2020
2.3.1-alpha 321 7/21/2020
2.3.0-alpha 324 7/21/2020
2.2.3-alpha 299 7/15/2020
2.2.2-alpha 328 6/22/2020
2.2.0-alpha 324 6/3/2020
2.1.11 457 6/2/2020
2.1.11-alpha 326 5/28/2020
2.1.10-alpha 344 5/28/2020
2.1.9-alpha 287 5/28/2020
2.1.8-alpha 341 5/28/2020
2.1.7-alpha 346 5/27/2020
2.1.6-alpha 294 5/26/2020
2.1.5-alpha 292 5/26/2020
2.1.4-alpha 305 5/26/2020
2.1.3-alpha 334 5/25/2020
2.1.2-alpha 345 5/25/2020
2.0.2 463 5/21/2020
1.1.0 475 3/27/2020
1.0.0 482 3/16/2020

SubUndoService class added. This is now used by AggregateUndoService instead of IUndoService.
IStateTracker interface added.
StateSet event added. This is intended to allow changed elements to be displayed in a UI in cases where they might not be currently visible when Undo/Redo is invoked.
IUndoService.Id removed. This was exposed incorrectly and used interally by AggregateUndoService.
Common validation code extracted into new public class UndoServiceValidator.