nuke-build

Orchestrate multi-target .NET builds with Nuke targets across platforms.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/GiantCroissant-Lunar/fantasim-world --skill nuke-build
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: nuke-build
Source: https://github.com/GiantCroissant-Lunar/fantasim-world/tree/main/.agent/skills/nuke-build
Command: npx skills add https://github.com/GiantCroissant-Lunar/fantasim-world --skill nuke-build

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill automates the orchestration of multi-target .NET builds using the Nuke build system, simplifying complex workflows and ensuring consistent, repeatable builds.

Core Features & Use Cases

  • Target orchestration: Manage and execute build pipelines with standard targets like Clean, Restore, and Compile.
  • Cross-platform automation: Run builds across Windows, macOS, and Linux with a single, unified workflow.
  • CI/CD integration: Seamlessly integrate Nuke-driven builds into CI/CD pipelines for automated validation.
  • Use Case: In a multi-project solution, coordinate independent project builds, dependencies, and artifacts through a single build script.

Quick Start

  1. Install Nuke and bootstrap the project: dotnet tool install Nuke.GlobalTool --global; nuke --version; nuke :setup
  2. Run a local build: cd ./build/nuke; ./build.sh Clean Restore Compile
  3. Get help and list targets: ./build.sh --help

Frequently Asked Questions about nuke-build

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I orchestrate complex .NET build targets across multiple platforms?

You can orchestrate complex .NET build targets across Windows, Linux, and macOS by coordinating Nuke targets. This approach manages multi-target build workflows like Clean, Restore, and Compile through a single unified build script.

Can I integrate Nuke build orchestration into existing CI/CD pipelines?

Yes, Nuke build orchestration seamlessly integrates into CI/CD pipelines for automated validation. It supports parameterized targets and environment-aware configurations within your existing Nuke-based workflow.

How do I set up a Nuke build script for a multi-project .NET solution?

To set up a Nuke build script, install the Nuke.GlobalTool via dotnet, run nuke :setup to bootstrap the project, and then coordinate independent project builds, dependencies, and artifacts through the generated build script.

What is the best way to manage dependency wiring for multi-target .NET builds?

The best way to manage dependency wiring for multi-target .NET builds is by using Nuke targets. Nuke handles dependency wiring and parameterized targets to ensure consistent, repeatable workflows across your entire solution.

Does Nuke support environment-aware configurations for cross-platform builds?

Nuke supports environment-aware configurations for cross-platform builds across Windows, macOS, and Linux. It enables you to run builds with a single, unified workflow while adapting to different environment settings.