md.Nuke.Unreal
1.0.1
See the version list below for details.
dotnet add package md.Nuke.Unreal --version 1.0.1
NuGet\Install-Package md.Nuke.Unreal -Version 1.0.1
<PackageReference Include="md.Nuke.Unreal" Version="1.0.1" />
paket add md.Nuke.Unreal --version 1.0.1
#r "nuget: md.Nuke.Unreal, 1.0.1"
// Install md.Nuke.Unreal as a Cake Addin #addin nuget:?package=md.Nuke.Unreal&version=1.0.1 // Install md.Nuke.Unreal as a Cake Tool #tool nuget:?package=md.Nuke.Unreal&version=1.0.1
Nuke.Unreal
Simplistic workflow for automating Unreal Engine project steps embracing Nuke.
Nuke + Unreal Engine workflow provides a consistent way to work with UE4/5 tools reducing the chore it comes with
Usage
For now, no Nuget release available but planned when it hits 1.0. When Nuget package will be available it'll be available as a simple package reference in your Nuke build project. If you still want to use this workflow you can install from script or go manually:
- Set up the build project:
Via a script:
iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/microdee/Nuke.Unreal.WorkflowTemplate/main/Setup.ps1'))
<details> <summary>Manually</summary>
> dotnet tool install Nuke.GlobalTool --global > dotnet new sln --name Build > nuke :setup # preferably put your build project inside Nuke.Targets folder > git submodule add https://github.com/microdee/Nuke.Unreal.git Nuke.Unreal > dotnet sln .\Build.sln add .\Nuke.Unreal\src\Nuke.Unreal\Nuke.Unreal.csproj > dotnet add .\Nuke.Targets\_build.csproj reference .\Nuke.Unreal\src\Nuke.Unreal\Nuke.Unreal.csproj
</details>
- Inherit your Build class from either
PluginTargets
,ProgramTargets
orProjectTargets
- Override abstract members, add own targets, set up dependencies
- (optional) Set the path to your UE project if it's not trivially around your Nuke targets:
public override AbsolutePath ToProject => RootDirectory / ".." / "MyProject" / "MyProject.uproject";
- This is only necessary if
- project file is not recursively inside one of the subfolders compared to the path of the
.nuke
folder - project file is not in one of the parent folders of the
.nuke
folder - there are multiple
.uproject
files so one needs to be specified. Nuke.Unreal targets support only one Unreal project.
- project file is not recursively inside one of the subfolders compared to the path of the
- (optional) Set the path to your target plugin if there are more in your test project, or if it's not trivially around your Nuke targets:
public override AbsolutePath ToPlugin => UnrealPluginsFolder / "MyPlugin" / "MyPlugin.uplugin";
- This is only necessary if
- there are multiple plugins in the test project so one needs to be specified. Nuke.Unreal targets support only one Unreal plugin to be worked on.
Features:
- All what the great Nuke can offer
- Common UE4 build tasks (generate project files, build editor, cook, package, etc)
> nuke generate > nuke build-editor > nuke build --config Shipping > nuke build --config DebugGame Development --run-in Editor > nuke cook > nuke package
- Prepare plugins for release in Marketplace
> nuke make-release --for-marketplace
- Bind Unreal tools to Nuke with fluent C# API [very WIP]
- Generate boilerplate code and scaffolding from Scriban templates so no editor needs to be opened
> nuke new-actor --name MyActor > nuke new-plugin --name MyPlugin > nuke new-module --name MyModule etc...
Custom UBT or UAT arguments
Nuke.Unreal supports passing custom arguments to UBT or UAT via --ubt-args
or --uat-args
. These are regular array properties exposed as Nuke target parameters. This means however that doing --ubt-args -DisableUnity
wouldn't actually add -DisableUnity
to the argument list. This happens because Nuke stops parsing the array argument when it hits a -
character. For this reason Nuke.Unreal has a special escape mechanism where ~-
is replaced with -
, or if the argument starts with ~
then that's also replaced with a -
.
So doing --ubt-args ~DisableUnity ~2022
will correctly pass arguments -DisableUnity -2022
to UBT.
For convenience the sequence ''
is also replaced with a double quote "
hopefully escaping command line parsers.
This is especially useful for doing temporary debugging with UBT and the compiler: (not an actual usecase)
> nuke build ... --ubt-args "~CompilerArguments=''/diagnostics:caret /P /C''" ~DisableUnity
> nuke build ... --ubt-args "~LinkerArguments=''/VERBOSE''"
> nuke build ... --ubt-args ~Preprocess
Generators
Unreal boilerplate templates
Nuke.Unreal provides some targets which creates boilerplate code for common Unreal entities, such as
- Plugins
- Modules
- Unreal Object/Actor/Structs/Interfaces
- Slate widgets
without the need for opening the UE4 editor or extend heavy weight IDE's. These boilerplate targets work with Scriban templates. The path to these templates can be overridden in the actual Nuke build class in case a project requires further boilerplate. Example:
In any folder in your project
> nuke NewActor --name MyPreciousActor
This will generate MyPreciousActor.h and ~.cpp at their respective places (taking public and private folders into account) and the minimal actor class boilerplate for unreal.
Optional Custom templates folders are required to contain generator specific subfolders. If a subfolder doesn't exist for a generator the default will be used. Example:
Scaffolding:
- RootDirectory
- Nuke.Targets
- ...
- Build.cs
- ...
- MyTemplates
- Actor
- Object
- Nuke.Targets
In Nuke.Targets/Build.cs
override TemplatesPath
property
public override AbsolutePath TemplatesPath { get; set; } = RootDirectory / "MyTemplates";
This way Actor and Object generators will have their project specific Scriban templates but the remaining generator types will use the default templates of Nuke.Unreal.
Generators for Unreal Tools [WIP]
Nuke.Unreal can generate type-safe fluent API for UE tooling with similar mindset as Nuke tools using direct reflection data from Unreal tools written for .NET. The Tool Generators project directly reference those programs as .NET assemblies. It's only done like this in the generator, and not actually inside the build project because the assemblies are referred with an absolute path, but the location of Unreal is a dynamic data during runtime ("build-time" if you prefer). So there's no extra ceremony for the user during setting up their build environment with Nuke.Unreal. As an added extra this way we can still somewhat treat these tools as executable black-boxes during runtime/build-time, so we don't run into any problems regarding different .NET environment requirements.
On the other hand Contributors to Nuke.Unreal need to modify LocalUnrealAssemblies.targets
in order to explicitly point to their own location of their unreal installation depending on their development platform. Again this is only necessary for generating the fluent tool API, but not for running the actual Nuke.Unreal targets.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net5.0
- Goblinfactory.Konsole (>= 6.2.0)
- Microsoft.CodeAnalysis.CSharp.Workspaces (>= 3.9.0)
- Nuke.Common (>= 6.0.1)
- Scriban (>= 4.0.1)
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 |
---|---|---|
2.1.5 | 32 | 11/12/2024 |
2.1.4 | 32 | 11/12/2024 |
2.1.1 | 74 | 11/8/2024 |
2.1.0 | 75 | 10/29/2024 |
2.0.18 | 99 | 10/6/2024 |
2.0.17 | 98 | 10/1/2024 |
2.0.16 | 91 | 10/1/2024 |
2.0.9 | 98 | 10/1/2024 |
2.0.7 | 94 | 6/10/2024 |
2.0.6 | 94 | 6/6/2024 |
2.0.5 | 124 | 3/15/2024 |
2.0.2 | 103 | 3/7/2024 |
2.0.0 | 114 | 3/6/2024 |
1.2.24 | 184 | 9/6/2023 |
1.2.22 | 154 | 8/31/2023 |
1.2.21 | 161 | 8/29/2023 |
1.2.19 | 151 | 8/29/2023 |
1.2.15 | 150 | 8/2/2023 |
1.2.13 | 172 | 7/20/2023 |
1.2.12 | 166 | 7/20/2023 |
1.2.11 | 153 | 7/20/2023 |
1.2.10 | 177 | 7/20/2023 |
1.2.9 | 175 | 6/14/2023 |
1.2.8 | 180 | 6/4/2023 |
1.2.7 | 182 | 6/4/2023 |
1.2.5 | 180 | 6/4/2023 |
1.2.4 | 204 | 5/17/2023 |
1.1.5 | 754 | 2/8/2023 |
1.1.4 | 298 | 2/8/2023 |
1.1.3 | 273 | 2/8/2023 |
1.1.2 | 294 | 2/8/2023 |
1.0.60 | 354 | 1/18/2023 |
1.0.49 | 378 | 11/10/2022 |
1.0.48 | 388 | 11/9/2022 |
1.0.41 | 469 | 9/26/2022 |
1.0.39 | 494 | 9/26/2022 |
1.0.36 | 493 | 9/15/2022 |
1.0.33 | 495 | 8/14/2022 |
1.0.29 | 474 | 7/27/2022 |
1.0.5 | 580 | 4/13/2022 |
1.0.4 | 545 | 4/13/2022 |
1.0.3 | 576 | 4/13/2022 |
1.0.1 | 553 | 4/12/2022 |
1.0.0 | 581 | 4/12/2022 |