Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.22 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.22 KB

Cake.Unity

Unity build support for Cake.

This is currently a work in progress, the API is not in any way final and will change.

Example

#reference "tools/Cake.Unity.dll"

Task("Unity")
	.Does(() =>
{
	var projectPath = @"C:\Project\UnityGame";

    // Build for Windows (x86)
    UnityBuild(projectPath, UnityBuildPlayer.Windows, @"C:\Output\Game.exe");

    // Execute script method
    UnityExecuteMethod(projectPath, "Class.Method");
    
    // Export .unitypackage
    UnityExportPackage(projectPath, "Result.unitypackage", @"Assets\ToExport");
    
    // Import .unitypackage
    UnityExportPackage(projectPath, "Import.unitypackage");

    // Test (Editor-tests only)
    UnityTest(projectPath);
    // OR with configuration
    UnityTest(projectPath, new UnityTestConfiguration
    {
        TestResultsFile = "./TestResults.xml",
        TestPlatform = UnityTestPlatform.PlayMode,

        Categories = new string[] { "LongRunningTests", "DefaultTests" },  // NOT supported in Unity through command line 
        Tests = new string[] { "SpaceshipTest", "AsteroidsTest" },         // NOT supported in Unity through command line
    });

});

RunTarget("Unity");