Skip to content

Commit

Permalink
Updated .NET Core 3.0 to Preview5 (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
kichalla authored May 14, 2019
1 parent 235c19d commit 92061b9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build/__dot-net-core-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ DOT_NET_CORE_21_VERSION='2.1.603'
DOT_NET_CORE_21_SHA512='DD0EFB8AAE75D8F48EF3ABBECA38AE14D2621A47E37B2D9D74755B58F9173343305F1A62CFA9A03F17C42F58B1D1B653D271E7D1327C81FF4AF0A54C43C7DB59'
DOT_NET_CORE_22_VERSION='2.2.202'
DOT_NET_CORE_22_SHA512='14F5C0E6FBB874A882334E0D500E494B01D7F363028E72DB58DFFF6DB43C54670533539DCF6B8F50A97CE1E099119A8286CE84E193B361D65B1FD8C7DFFCE63D'
DOT_NET_CORE_30_VERSION_PREVIEW_NAME='3.0.100-preview4-011223'
DOT_NET_CORE_30_VERSION_PREVIEW_NAME='3.0.100-preview5-011568'
DOT_NET_CORE_30_VERSION='3.0.100'
DOT_NET_CORE_30_SHA512='b416dd4014ad62c7d19413c44738f1cc6152c94570c31dc953be16bfeadecf449b2aab7ecc09c9d3fcd12b2d440f281a0c8f1ad0635bc035adb34c26f8d1e2ae'
DOT_NET_CORE_30_SHA512='207af1f3161cbd0864902370475fcad5b500bf2b7199b06445e7c338053bc7cb0157ee1b4d00a37a351eae6e209417ee4a15eeacee086aac0ac1be7a62f3ad0b'
4 changes: 2 additions & 2 deletions build/build-constants.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
dot-net-core-22-sha512: 14F5C0E6FBB874A882334E0D500E494B01D7F363028E72DB58DFFF6DB43C54670533539DCF6B8F50A97CE1E099119A8286CE84E193B361D65B1FD8C7DFFCE63D
# Since preview names of .NET Core break the semver norms, it does not work well with the code
# that we depend on for semantic version checks, so having two constants here.
dot-net-core-30-version-preview-name: 3.0.100-preview4-011223
dot-net-core-30-version-preview-name: 3.0.100-preview5-011568
dot-net-core-30-version: 3.0.100
dot-net-core-30-sha512: b416dd4014ad62c7d19413c44738f1cc6152c94570c31dc953be16bfeadecf449b2aab7ecc09c9d3fcd12b2d440f281a0c8f1ad0635bc035adb34c26f8d1e2ae
dot-net-core-30-sha512: 207af1f3161cbd0864902370475fcad5b500bf2b7199b06445e7c338053bc7cb0157ee1b4d00a37a351eae6e209417ee4a15eeacee086aac0ac1be7a62f3ad0b
outputs:
- type: csharp
directory: src/BuildScriptGenerator/DotNetCore
Expand Down
2 changes: 1 addition & 1 deletion images/runtime/dotnetcore/dotnetCoreVersions.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
2.2, mcr.microsoft.com/dotnet/core/aspnet:2.2.4
3.0, mcr.microsoft.com/dotnet/core/aspnet:3.0.0-preview4
3.0, mcr.microsoft.com/dotnet/core/aspnet:3.0.0-preview5
4 changes: 2 additions & 2 deletions src/BuildScriptGenerator/DotNetCore/DotNetCoreVersions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public static class DotNetCoreVersions
public const string DotNetCore21Sha512 = "DD0EFB8AAE75D8F48EF3ABBECA38AE14D2621A47E37B2D9D74755B58F9173343305F1A62CFA9A03F17C42F58B1D1B653D271E7D1327C81FF4AF0A54C43C7DB59";
public const string DotNetCore22Version = "2.2.202";
public const string DotNetCore22Sha512 = "14F5C0E6FBB874A882334E0D500E494B01D7F363028E72DB58DFFF6DB43C54670533539DCF6B8F50A97CE1E099119A8286CE84E193B361D65B1FD8C7DFFCE63D";
public const string DotNetCore30VersionPreviewName = "3.0.100-preview4-011223";
public const string DotNetCore30VersionPreviewName = "3.0.100-preview5-011568";
public const string DotNetCore30Version = "3.0.100";
public const string DotNetCore30Sha512 = "b416dd4014ad62c7d19413c44738f1cc6152c94570c31dc953be16bfeadecf449b2aab7ecc09c9d3fcd12b2d440f281a0c8f1ad0635bc035adb34c26f8d1e2ae";
public const string DotNetCore30Sha512 = "207af1f3161cbd0864902370475fcad5b500bf2b7199b06445e7c338053bc7cb0157ee1b4d00a37a351eae6e209417ee4a15eeacee086aac0ac1be7a62f3ad0b";
}
}

0 comments on commit 92061b9

Please sign in to comment.