Patchouli 1.0.0
dotnet add package Patchouli --version 1.0.0
NuGet\Install-Package Patchouli -Version 1.0.0
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="Patchouli" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Patchouli --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Patchouli, 1.0.0"
#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 Patchouli as a Cake Addin #addin nuget:?package=Patchouli&version=1.0.0 // Install Patchouli as a Cake Tool #tool nuget:?package=Patchouli&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Patchouli
Software patching tool using VCDIFF.
About
Patchouli is a library and a command line utility to perform delta updates. It works by comparing two directories, checking which files were added, deleted or changed. All these changes are then packaged into an archive. VCDIFF is used to create patches for files that changed.
This archive can be applied to the previous version to update it.
What is a delta update
A delta update means the user only needs to download what changed from the previous version.
Library
Creating an archive:
var archiveCreator = new ArchiveCreator(previousDirectoryPath, newDirectoryPath);
var archive = await archiveCreator.CreateArchive();
var archiveWriter = new ArchiveWriter(archive, archiveOutputPath);
await archiveWriter.Write();
Applying an archive:
var archiveReader = new ArchiveReader(archivePath);
var archive = await archiveReader.ReadArchive();
var archiveApplier = new ArchiveApplier(archive, versionToPatchPath);
await archiveApplier.Apply();
Product | Versions 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 | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- VCDiff (>= 3.2.7)
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.0.0 | 515 | 7/17/2020 |