From d3aa9475f40ce3d060d4f2a346dd41751d621f5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 21:53:56 +0000 Subject: [PATCH 1/2] 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] --- build/Build.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Build.csproj b/build/Build.csproj index d4b3d7b05f..8cd2ea40d8 100644 --- a/build/Build.csproj +++ b/build/Build.csproj @@ -1,4 +1,4 @@ - + Exe @@ -9,7 +9,7 @@ - + From 79f3882a59236a014e0f6ddd977ba5e0d62e9d2e Mon Sep 17 00:00:00 2001 From: Keegan Campbell Date: Mon, 18 Dec 2023 13:30:31 -0800 Subject: [PATCH 2/2] Lifetime.cs#Setup inheritance fixed --- build/Lifetime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Lifetime.cs b/build/Lifetime.cs index 9ca63e0557..21078a25f3 100644 --- a/build/Lifetime.cs +++ b/build/Lifetime.cs @@ -8,7 +8,7 @@ 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");