Grapeyard.Labs.Nuke.Launchpad.Parameters
3.0.0
See the version list below for details.
dotnet add package Grapeyard.Labs.Nuke.Launchpad.Parameters --version 3.0.0
NuGet\Install-Package Grapeyard.Labs.Nuke.Launchpad.Parameters -Version 3.0.0
<PackageReference Include="Grapeyard.Labs.Nuke.Launchpad.Parameters" Version="3.0.0" />
paket add Grapeyard.Labs.Nuke.Launchpad.Parameters --version 3.0.0
#r "nuget: Grapeyard.Labs.Nuke.Launchpad.Parameters, 3.0.0"
// Install Grapeyard.Labs.Nuke.Launchpad.Parameters as a Cake Addin #addin nuget:?package=Grapeyard.Labs.Nuke.Launchpad.Parameters&version=3.0.0 // Install Grapeyard.Labs.Nuke.Launchpad.Parameters as a Cake Tool #tool nuget:?package=Grapeyard.Labs.Nuke.Launchpad.Parameters&version=3.0.0
NUKE Launchpad Parameters
Predefined build parameters 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 parameters 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 | Versions 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. |
-
net9.0
- Grapeyard.Labs.Nuke.Launchpad.Common (>= 3.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Grapeyard.Labs.Nuke.Launchpad.Parameters:
Package | Downloads |
---|---|
Grapeyard.Labs.Nuke.Launchpad.Targets
Predefined build targets for the build automation tool NUKE for C# and .NET. |
|
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.
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