Skip to content

Commit

Permalink
Merge branch 'release/0.8.1' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
kolesnick committed Jun 16, 2021
2 parents 3f1832b + 4fcb1a4 commit 8e56327
Show file tree
Hide file tree
Showing 17 changed files with 6 additions and 605 deletions.
2 changes: 2 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ branches:
# Whitelist
only:
- develop
- /feature/.*/
- /bugfix/.*/
- master
- /release/.*/
- /hotfix/.*/
Expand Down
28 changes: 1 addition & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ Cake.Unity

Unity build support for [Cake](https://github.com/cake-build/cake).

This is currently a work in progress and only supports building for Windows.
The API is not in any way final and will change.
More documentation [can be found here](https://cakebuild.net/dsl/unity/).

Examples
-------
Expand Down Expand Up @@ -63,28 +62,3 @@ Task("Default")

RunTarget("Default");
```

Older API Example
-------

```csharp
#r "tools/Cake.Unity.dll"

Task("Build")
.Description("Builds the game.")
.Does(() =>
{
var projectPath = @"C:\Project\UnityGame";
var outputPath = @"C:\Output\Game.exe";

// Build for Windows (x86)
UnityBuild(projectPath, new WindowsPlatform(outputPath) {
NoGraphics = true });

// Build for Windows (x64)
UnityBuild(projectPath, new WindowsPlatform(outputPath) {
PlatformTarget = UnityPlatformTarget.x64 });
});

RunTarget("Build");
```
4 changes: 2 additions & 2 deletions nuspec/nuget/Cake.Unity.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Cake.Unity</id>
<version>0.0.0</version>
<authors>Patrik Svensson, Anatoliy Kolesnick</authors>
<owners>patriksvensson, cake-contrib, kolesnick</owners>
<authors>Anatoliy Kolesnick</authors>
<owners>kolesnick, cake-contrib</owners>
<description>Cake Unity AddIn.</description>
<summary>Cake AddIn that extends Cake with ability to execute the Unity Editor as a command line utility.</summary>
<projectUrl>https://github.com/cake-contrib/Cake.Unity/</projectUrl>
Expand Down
1 change: 0 additions & 1 deletion recipe.cake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ ToolSettings.SetToolSettings(context: Context,
dupFinderExcludePattern: new []
{
BuildParameters.RootDirectoryPath + "/src/Cake.Unity/obj/**/*.*",
BuildParameters.RootDirectoryPath + "/src/Cake.Unity.Tests/**/*.cs",
BuildParameters.RootDirectoryPath + "/src/Cake.Unity.FSharp.Tests/**/*.fs",
},
testCoverageFilter: "+[*]* -[xunit.*]* -[Cake.Core]* -[Cake.Testing]* -[*.Tests]*",
Expand Down
79 changes: 0 additions & 79 deletions src/Cake.Unity.Tests/Cake.Unity.Tests.csproj

This file was deleted.

25 changes: 0 additions & 25 deletions src/Cake.Unity.Tests/Fixtures/UnityPlatformFixture.cs

This file was deleted.

69 changes: 0 additions & 69 deletions src/Cake.Unity.Tests/Fixtures/UnityRunnerFixture.cs

This file was deleted.

36 changes: 0 additions & 36 deletions src/Cake.Unity.Tests/Properties/AssemblyInfo.cs

This file was deleted.

79 changes: 0 additions & 79 deletions src/Cake.Unity.Tests/Unit/Platforms/WindowsPlatformTests.cs

This file was deleted.

Loading

0 comments on commit 8e56327

Please sign in to comment.