Incrementalist 0.1.4

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

// Install Incrementalist as a Cake Tool
#tool nuget:?package=Incrementalist&version=0.1.4

Library for running incremental, Git-based builds and tests in .NET and .NET Core.

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.

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.9.0 222 11/22/2023
0.8.0 419 11/24/2022
0.7.0 461 5/24/2022
0.6.0 351 11/10/2021
0.5.0 370 6/16/2021
0.4.0 350 12/23/2020
0.3.0 552 9/26/2020
0.2.2 476 2/14/2020
0.2.1 487 11/18/2019
0.2.0 468 10/29/2019
0.1.7 522 9/9/2019
0.1.6 474 8/30/2019
0.1.5 533 8/30/2019
0.1.4 544 5/17/2019
0.1.3 558 5/15/2019
0.1.2 539 5/8/2019
0.1.1 529 5/8/2019

Bugfix release for Incrementalist v0.1.3
Fixed [MSBuild graph issue where two unrelated changes in the same branch could overwrite each other in the Incrementalist output](https://github.com/petabridge/Incrementalist/issues/49).
In the event of three concurrent MSBuild dependency graphs like these:
[A modified] Project A --> B --> C
[B modified] Project B --> C
[D modified] Project D --> E
In Incrementalist 0.1.3, you'd only see this graph: `Project A --> B --> C` because it was the longest and "covered" all of the other graphs. In Incrementalist 0.1.4 you'll now see the following build output:
Project A --> B --> C
Project D --> E
Each line represents its own independent graph, uncovered by any of the other graphs detected in the topology of the MSBuild solution.