From 7b7cfd3ea05fe4e00acb1ba93f763c5f2050cb6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:47:36 -0800 Subject: [PATCH] build(deps): bump Cake.Frosting from 2.3.0 to 4.0.0 in /build (#2814) * build(deps): bump Cake.Frosting from 2.3.0 to 4.0.0 in /build Bumps [Cake.Frosting](https://github.com/cake-build/cake) from 2.3.0 to 4.0.0. - [Release notes](https://github.com/cake-build/cake/releases) - [Changelog](https://github.com/cake-build/cake/blob/develop/ReleaseNotes.md) - [Commits](https://github.com/cake-build/cake/compare/v2.3.0...v4.0.0) --- updated-dependencies: - dependency-name: Cake.Frosting dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Lifetime.cs#Setup inheritance fixed --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nick Floyd <139819+nickfloyd@users.noreply.github.com> Co-authored-by: Keegan Campbell --- build/Build.csproj | 4 ++-- build/Lifetime.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/Build.csproj b/build/Build.csproj index d4b3d7b0..8cd2ea40 100644 --- a/build/Build.csproj +++ b/build/Build.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,7 +9,7 @@ - + diff --git a/build/Lifetime.cs b/build/Lifetime.cs index 9ca63e05..21078a25 100644 --- a/build/Lifetime.cs +++ b/build/Lifetime.cs @@ -8,7 +8,7 @@ using Cake.Core; public class Lifetime : FrostingLifetime { - public override void Setup(Context context) + public override void Setup(Context context, ISetupContext setupContext) { context.Target = context.Argument("target", "Default"); context.Configuration = context.Argument("configuration", "Release");