Grapeyard.Labs.Nuke.Launchpad.Common 1.1.0

dotnet add package Grapeyard.Labs.Nuke.Launchpad.Common --version 1.1.0                
NuGet\Install-Package Grapeyard.Labs.Nuke.Launchpad.Common -Version 1.1.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.Common" Version="1.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grapeyard.Labs.Nuke.Launchpad.Common --version 1.1.0                
#r "nuget: Grapeyard.Labs.Nuke.Launchpad.Common, 1.1.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.Common as a Cake Addin
#addin nuget:?package=Grapeyard.Labs.Nuke.Launchpad.Common&version=1.1.0

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

NUKE Launchpad Common

Common feature extensions for the build automation tool NUKE for C# and .NET.

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="1.1.0" />

This will automatically install all packages that are part of NUKE Launchpad and their transitive dependencies. If only the common feature extensions 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 – net8.0 or above – using its project properties or manually via its project file:

<TargetFramework>net8.0</TargetFramework>
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Grapeyard.Labs.Nuke.Launchpad.Common:

Package Downloads
Grapeyard.Labs.Nuke.Launchpad.Parameters

Predefined build parameters for the build automation tool NUKE for C# and .NET.

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.

Version Downloads Last updated
1.1.0 89 8/29/2024
1.0.0 130 5/17/2024
0.3.0 137 3/14/2024
0.2.0 183 1/8/2024
0.1.1 154 9/8/2023
0.1.0 155 9/6/2023

Added

• Integrated NuGet audit to automatically check for security vulnerabilites in NuGet dependencies during the build process.
• Added string constants for the default year separators used in copyright notices to the Constants class.
• Added the following methods to the AbsolutePathExtensions class:
   ◦ Method ReadWriteAllLinesAtomically that reads all lines of an existing file, modifies them via a custom delegate function and then writes them back to the file atomically, i.e. by first writing them to a temporary buffer file.
   ◦ Method WriteAllLinesAtomically that writes all lines to an existing file atomically, i.e. by first writing them to a temporary buffer file.
• Added method UpdateLastPublicationYearOfCopyrightNoticesUsingSingleYearSpans to the LicensingTasks class, that updates the last publication years of copyright notices found in an input enumerable, combining multiple publication years, if any, into a single year span for each notice in the process.
• Added the following configuration properties to the IUpdateCopyrightYearsOfRepositoryLicenseToCurrent target surrogate interface:
   ◦ Property CopyrightYearSeparator that allows specifying the separator used to link first and last publication years of copyright notices.
   ◦ Property LimitToTwoCopyrightYears that allows to limit the update of last publication years of copyright notices to single year spans respectively a maximum of two publication years.

Changed

• Updated dependencies to NuGet package GitVersion.Tool from version 5.12.0 to 6.0.2.
• Added an optional parameter to overloaded method ExtractReleaseNotesForNuGet of the KeepAChangelogFormatTasks class, allowing to specify whether change type groups, if any, should be merged in the extracted release notes.
• Changed the process of method UpdateLastPublicationYearOfCopyrightNotices of the LicensingTasks class to preserve multiple publication years of copyright notices found in an input enumerable, if any, while updating their last publication years. Therefore, it is now compatible with e.g. license terms of the GNU project.
• Changed the default value of build parameter --test-code-dir of the IHasTestCode parameter interface, that specifies the relative path to a test code directory, from test/ to tests/.
• Implemented method ReadWriteAllLinesAtomically of the AbsolutePathExtensions class in all applicable build targets.

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