From 4bcf940e08681d4faf414c1a5179194b60d6526d Mon Sep 17 00:00:00 2001 From: Christopher Whitley Date: Sat, 18 May 2024 21:50:55 -0400 Subject: [PATCH] Use new .artifacts directory --- build/BuildContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/BuildContext.cs b/build/BuildContext.cs index 72fb8187..077fa638 100644 --- a/build/BuildContext.cs +++ b/build/BuildContext.cs @@ -22,7 +22,7 @@ public sealed class BuildContext : FrostingContext public BuildContext(ICakeContext context) : base(context) { - ArtifactsDirectory = context.Argument(nameof(ArtifactsDirectory), "artifacts"); + ArtifactsDirectory = context.Argument(nameof(ArtifactsDirectory), ".artifacts"); Version = context.XmlPeek("Directory.Build.props", "/Project/PropertyGroup/Version"); SolutionPath = "./MonoGame.Extended.sln"; IsRunningOnGitHubActions = context.BuildSystem().IsRunningOnGitHubActions;