Skip to content

Commit

Permalink
[xaprepare] Always use release mono bundle (#9106)
Browse files Browse the repository at this point in the history
The "debug" version of the mono archive appears to no longer exist due
to recent storage account changes. The release bundles are still live,
so we should default to using those even for debug builds.
  • Loading branch information
pjcollins authored Jul 15, 2024
1 parent 4b1ec57 commit 89037aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static partial class Defaults
public const bool UseEmoji = true;
public const bool DullMode = false;

public static string MonoSdksConfiguration => Context.Instance.Configuration.ToLowerInvariant ();
public const string MonoSdksConfiguration = "release";

public const string ZipCompressionFormatName = "zip";
public const string SevenZipCompressionFormatName = "7z";
Expand Down

0 comments on commit 89037aa

Please sign in to comment.