Skip to content
This repository has been archived by the owner on Nov 28, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/0.36.0'
Browse files Browse the repository at this point in the history
* release/0.36.0:
  Updated to Cake.Core 0.36.0
  Updated to .NET Core SDK 2.1.803
  • Loading branch information
devlead committed Jan 23, 2020
2 parents fd2edd7 + b598d79 commit 7798080
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Param(
[string[]]$ScriptArgs
)

$DotNetVersion = "2.1.802";
$DotNetVersion = "2.1.803";
$DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1";
$NugetUrl = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"projects": [ "src", "build" ],
"sdk": {
"version": "2.1.802"
"version": "2.1.803"
}
}
4 changes: 2 additions & 2 deletions src/Cake.Frosting/Cake.Frosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cake.Core" Version="0.35.0" />
<PackageReference Include="Cake.Common" Version="0.35.0" />
<PackageReference Include="Cake.Core" Version="0.36.0" />
<PackageReference Include="Cake.Common" Version="0.36.0" />
<None Include="../../LICENSE" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down
15 changes: 15 additions & 0 deletions src/Cake.Frosting/Internal/Commands/DryRunExecutionStrategy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,20 @@ public void PerformTaskSetup(Action<ITaskSetupContext> action, ITaskSetupContext
public void PerformTaskTeardown(Action<ITaskTeardownContext> action, ITaskTeardownContext taskTeardownContext)
{
}

public Task ReportErrorsAsync(Func<Exception, Task> action, Exception exception)
{
return Task.CompletedTask;
}

public Task HandleErrorsAsync(Func<Exception, ICakeContext, Task> action, Exception exception, ICakeContext context)
{
return Task.CompletedTask;
}

public Task InvokeFinallyAsync(Func<Task> action)
{
return Task.CompletedTask;
}
}
}
2 changes: 1 addition & 1 deletion template/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Cake.Frosting" Version="0.35.0" />
<PackageReference Include="Cake.Frosting" Version="0.36.0" />
</ItemGroup>

</Project>

0 comments on commit 7798080

Please sign in to comment.