Skip to content

Commit a405174

Browse files
committed
nuget updates
1 parent a5ef03e commit a405174

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build/common/Utilities/DockerContextExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static bool SkipImage(this ICakeContext context, DockerImage dockerImage)
1313
{
1414
var (distro, targetFramework, architecture, _, _) = dockerImage;
1515

16-
if (architecture != Architecture.Arm64) return false;
16+
if (architecture == Architecture.Amd64) return false;
1717
if (!Constants.DistrosToSkip.Contains(distro)) return false;
1818

1919
context.Information($"Skipping Target: {targetFramework}, Distro: {distro}, Arch: {architecture}");

build/common/Utilities/Tools.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ public class Tools
66

77
public static readonly Dictionary<string, string> Versions = new()
88
{
9-
{ NugetCmd, "6.1.0" },
9+
{ NugetCmd, "6.3.1" },
1010
};
1111
}

dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"gitversion.tool": {
12-
"version": "5.10.1",
12+
"version": "5.10.3",
1313
"commands": [
1414
"dotnet-gitversion"
1515
]
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
"Wyam2.Tool": {
24-
"version": "3.0.0-rc3",
24+
"version": "3.0.0",
2525
"commands": [
2626
"wyam2"
2727
]

0 commit comments

Comments
 (0)