Ayaka.Nuke 0.6.7

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

// Install Ayaka.Nuke as a Cake Tool
#tool nuget:?package=Ayaka.Nuke&version=0.6.7                

About

Provides various opinionated build components for simpler build automation using NUKE.

Key Features

Provides build components like:

  • IHave... to extend the build with additional context. For example
    • IHaveSources, IHaveTests, IHaveArtifacts, etc. to provide conventional paths for sources, tests, artifacts and other directories to the build
    • IHaveGitRepository to provide information about the current Git repository to the build
    • IHaveGitVersion to provide information about the current Git version configuration to the build
    • IHaveNuGetConfiguration to have NuGet API client parameters
    • IHaveGitHubToken to have GitHub API client parameters
    • and many more
  • ICanDotNet... to restore, build, test and pack .NET projects
  • ICanShipPublicApis to automatically ship PublicAPI.Unshipped.txt to PublicAPI.Shipped.txt
  • and many more

Additionally, provides build tasks that wrap other tools or APIs like:

  • GitHubTasks to create pull requests, generate release notes or create new releases

How to Use

Using any of the build components is as simple as decorating your build class. For example:

class Build
    : NukeBuild
        IHaveSources,
        ICanDotNetRestore,
        ICanDotNetBuild
{
    public static int Main() => Execute<Build>(x => x.Default);

    Target Default => target => target
        .DependsOn<IHaveDotNetRestoreTarget>()
        .DependsOn<IHaveDotNetBuildTarget>();
}

Note: You can either use ICanDotNetRestore or IHaveDotNetRestoreTarget to use the target with .DependsOn().

Additional Documentation

Soon... 😃

Feedback & Contributing

Ayaka.Nuke is an open-source project and welcomes contributions. If you have any ideas, improvements or issues, please open an issue or a pull request at the GitHub repository.

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

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 0 11/7/2024
0.7.2 0 11/7/2024
0.7.1 72 10/24/2024
0.7.0 70 10/21/2024
0.6.9 77 10/8/2024
0.6.8 72 10/6/2024
0.6.7 83 9/24/2024
0.6.6 86 9/24/2024
0.6.5 81 9/24/2024
0.6.4 88 9/24/2024
0.6.3 111 7/15/2024
0.6.2 91 7/15/2024
0.6.1 108 7/10/2024
0.6.0 113 7/10/2024
0.5.0 100 6/16/2024
0.4.0 105 6/10/2024
0.3.0 107 5/21/2024