Cake.Unity3D
0.4.0
See the version list below for details.
dotnet add package Cake.Unity3D --version 0.4.0
NuGet\Install-Package Cake.Unity3D -Version 0.4.0
<PackageReference Include="Cake.Unity3D" Version="0.4.0" />
paket add Cake.Unity3D --version 0.4.0
#r "nuget: Cake.Unity3D, 0.4.0"
// Install Cake.Unity3D as a Cake Addin #addin nuget:?package=Cake.Unity3D&version=0.4.0 // Install Cake.Unity3D as a Cake Tool #tool nuget:?package=Cake.Unity3D&version=0.4.0
Cake.Unity3D
About
Unity3D build support for Cake (https://github.com/cake-build/cake).
Methods
/// <summary>
/// Build a provided Unity3D project with the specified build options.
/// </summary>
/// <param name="context">The active cake context.</param>
/// <param name="projectFolder">The absolute path to the Unity3D project to build.</param>
/// <param name="options">The build options to use when building the project.</param>
public static void BuildUnity3DProject(this ICakeContext context, FilePath projectFolder, Unity3DBuildOptions options)
/// <summary>
/// Locate all installed version of Unity3D.
/// Warning: This currently only works for Windows and has only been tested on Windows 10.
/// </summary>
/// <param name="context">The active cake context.</param>
/// <returns>A dictionary containing 'key' Unity version, 'value' absolute install path</returns>
public static Dictionary<string, string> GetAllUnityInstalls(this ICakeContext context)
/// <summary>
/// Try and get the absolute install path for a specific Unity3D version.
/// </summary>
/// <param name="context">The active cake context.</param>
/// <param name="version">The version to try and locate.</param>
/// <param name="installPath">If found the absolute install path will be written to this out variable</param>
/// <returns>True if the editor version was found, false otherwise.</returns>
public static bool TryGetUnityInstall(this ICakeContext context, string version, out string installPath)
Example
#addin nuget:?package=Cake.Unity3D
var target = Argument("target", "Build");
Task("Build")
.Does(() =>
{
// Presuming the build.cake file is within the Unity3D project folder.
var projectPath = System.IO.Path.GetFullPath("./");
// The location we want the build application to go
var outputPath = System.IO.Path.Combine(projectPath, "_build", "x64", "example.exe");
// Get the absolute path to the 2018.1.0f1 Unity3D editor.
string unityEditorLocation;
if (!TryGetUnityInstall("Unity 2018.1.0f1 (64-bit)", out unityEditorLocation))
{
Error("Failed to find 'Unity 2018.1.0f1 (64-bit)' install location");
return;
}
// Create our build options.
var options = new Unity3DBuildOptions()
{
Platform = Unity3DBuildPlatform.StandaloneWindows64,
OutputPath = outputPath,
UnityEditorLocation = unityEditorLocation,
ForceScriptInstall = true,
BuildVersion = "1.0.0"
};
// Perform the Unity3d build.
BuildUnity3DProject(projectPath, options);
});
RunTarget(target);
Supported Platforms
Executing Platforms
Currently the addon only works on Windows and has only been tested on Windows 10. This is due to how the 'TryGetUnityInstall' works. What it does is look at all shortcuts in your Windows start menu and locate the Unity3D installs from that. In theory, if you just set the 'UnityEditorLocation' build option to the absolute path to your Unity3D install on Mac or Linux, this should also work.
Build Platforms
- StandaloneWindows64
- StandaloneWindows
- WebGL
In theory, all platforms that the executing platform supports should work. However, I haven't test any apart from the above list.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.