From cace969828150b8d84816ee244e0f8b2d82d9f07 Mon Sep 17 00:00:00 2001 From: Max Katz Date: Sat, 22 Nov 2025 21:08:44 -0800 Subject: [PATCH] Add alternative Nuke build command for direct execution --- docs/build.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/build.md b/docs/build.md index 8f0cfafaca..2edf5a8178 100644 --- a/docs/build.md +++ b/docs/build.md @@ -71,6 +71,9 @@ And run tests: Or if you need to create nuget packages as well (it will compile and run tests automatically): `nuke --target Package --configuration Release` +Alternatively, you can run nuke build direclty without installing Nuke global tool: +`dotnet run --project nukebuild/_build.csproj -- --configuration Debug` + # Linux/macOS It's *not* possible to build the *whole* project on Linux/macOS. You can only build the subset targeting .NET Standard and .NET Core (which is, however, sufficient to get UI working on Linux/macOS). If you want to something that involves changing platform-specific APIs you'll need a Windows machine.