Grapeyard.Labs.Nuke.Launchpad.Targets 3.0.0

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

// Install Grapeyard.Labs.Nuke.Launchpad.Targets as a Cake Tool
#tool nuget:?package=Grapeyard.Labs.Nuke.Launchpad.Targets&version=3.0.0                

NUKE Launchpad Targets

Predefined build targets for the build automation tool NUKE for C# and .NET in the form of configurable build component interfaces.

Installation

After setting up a NUKE build project as described in the NUKE documentation, preferably install NUKE Launchpad by adding the package Grapeyard.Labs.Nuke.Launchpad to it as a NuGet dependency using a NuGet package manager or by adding it manually to its project file:

<PackageReference Include="Grapeyard.Labs.Nuke.Launchpad" Version="3.0.0" />

This will automatically install all packages that are part of NUKE Launchpad and their transitive dependencies. If only the predefined build targets are actually needed, install this package individually instead.

If the installation fails with NuGet error NU1202, update the target framework of the NUKE build project to a compatible version first – net9.0 or above – using its project properties or manually via its project file:

<TargetFramework>net9.0</TargetFramework>
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Grapeyard.Labs.Nuke.Launchpad.Targets:

Package Downloads
Grapeyard.Labs.Nuke.Launchpad

Quickstart and extension library for the build automation tool NUKE for C# and .NET.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.3 61 1/27/2025
3.0.2 108 12/5/2024
3.0.1 108 12/4/2024
3.0.0 91 12/2/2024
2.0.2 99 11/6/2024
2.0.1 101 11/5/2024
2.0.0 94 10/30/2024
1.1.0 116 8/29/2024
1.0.0 137 5/17/2024
0.3.0 160 3/14/2024
0.2.0 204 1/8/2024
0.1.1 170 9/8/2023
0.1.0 159 9/6/2023

Changed

• Breaking: Implemented the new params collections feature of C# 13 and renamed some of the affected methods to standardize their suffix:
   ◦ Added the params modifier to the enumerable parameter otherPaths of method IsContainedInAny of the AbsolutePathExtensions class, making it possible to use the method with a variable number of arguments.
   ◦ Renamed method IsAnyOf of the CharExtensions class to IsAny and changed the type of its charactersToSeek parameter from array to an enumerable collection.
   ◦ Renamed method ContainsAnyOf of the StringExtensions class to ContainsAny and changed the type of its textsToSeek parameter from array to an enumerable collection.
• Breaking: Moved all methods of class ToolSettingsExtensions into the ObjectExtensions class and renamed method WhenNotNull to WhenIsNotNull to avoid ambiguous method calls with the new WhenNotNull method of NuGet package Nuke.Common in version 9.0.0, which fulfills the same function but is not null-forgiving, causing CS8602 code analyzer errors in the method chain.
• Breaking: Changed the return type of method GitExitHandlerThatIgnoresEmptyCommits of the ExtendedGitTasks class from void to object to match the exit handler definition in NuGet package Nuke.Common, which was altered in version 9.0.0.
• Updated the target framework version from .NET 8 to .NET 9.
• Updated the target language version from C# 12 to C# 13.
• Updated dependencies to NuGet package Nuke.Common from version 8.1.4 to 9.0.1.
• Updated dependencies to NuGet package GitVersion.Tool from version 6.0.4 to 6.0.5.

Removed

• Breaking: Removed method IsContainedInAnyOf from the AbsolutePathExtensions class in favor of method IsContainedInAny, which takes over its function due to the implementation of the new params collections feature of C# 13.
• Breaking: Removed class ToolSettingsExtensions because the corresponding class ToolSettings was removed from NuGet package Nuke.Common in version 9.0.0.

Full changelog at https://gitlab.com/grapeyard-labs/libs/nuke-launchpad/-/blob/3.0.0/CHANGELOG.md