Skip to content

Commit

Permalink
nuget updates
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Oct 19, 2022
1 parent a5ef03e commit a405174
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/common/Utilities/DockerContextExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static bool SkipImage(this ICakeContext context, DockerImage dockerImage)
{
var (distro, targetFramework, architecture, _, _) = dockerImage;

if (architecture != Architecture.Arm64) return false;
if (architecture == Architecture.Amd64) return false;
if (!Constants.DistrosToSkip.Contains(distro)) return false;

context.Information($"Skipping Target: {targetFramework}, Distro: {distro}, Arch: {architecture}");
Expand Down
2 changes: 1 addition & 1 deletion build/common/Utilities/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public class Tools

public static readonly Dictionary<string, string> Versions = new()
{
{ NugetCmd, "6.1.0" },
{ NugetCmd, "6.3.1" },
};
}
4 changes: 2 additions & 2 deletions dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"gitversion.tool": {
"version": "5.10.1",
"version": "5.10.3",
"commands": [
"dotnet-gitversion"
]
Expand All @@ -21,7 +21,7 @@
]
},
"Wyam2.Tool": {
"version": "3.0.0-rc3",
"version": "3.0.0",
"commands": [
"wyam2"
]
Expand Down

0 comments on commit a405174

Please sign in to comment.