Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 8f3458b

Browse files
authored
Merge pull request #5923 from wtgodbe/1016Stable
Bump versions & Mark 1.0.16 stable
2 parents c64a117 + 8f85782 commit 8f3458b

File tree

13 files changed

+43
-14
lines changed

13 files changed

+43
-14
lines changed

TestAssets/TestProjects/PortableApp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"dependencies": {
1010
"Microsoft.NETCore.App": {
1111
"type": "platform",
12-
"version": "1.0.16-servicing-*"
12+
"version": "1.0.16"
1313
},
1414
"Newtonsoft.Json": "9.0.1-beta1"
1515
}

TestAssets/TestProjects/PortableTestApp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"Microsoft.NETCore.App": {
1414
"type": "platform",
15-
"version": "1.0.16-servicing-*"
15+
"version": "1.0.16"
1616
},
1717
"Newtonsoft.Json": "9.0.1-beta1",
1818
"xunit": "2.1.0",

TestAssets/TestProjects/StandaloneApp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"frameworks": {
66
"netcoreapp1.0": {
77
"dependencies": {
8-
"Microsoft.NETCore.App": "1.0.16-servicing-*",
8+
"Microsoft.NETCore.App": "1.0.16",
99
"Newtonsoft.Json": "9.0.1-beta1"
1010
}
1111
}

TestAssets/TestProjects/StandaloneTestApp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"portable-net451+win8"
1010
],
1111
"dependencies": {
12-
"Microsoft.NETCore.App": "1.0.16-servicing-*",
12+
"Microsoft.NETCore.App": "1.0.16",
1313
"Newtonsoft.Json": "9.0.1-beta1",
1414
"xunit": "2.1.0",
1515
"xunit.netcore.extensions": "1.0.0-prerelease-00206",

branchinfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MAJOR_VERSION=1
66
MINOR_VERSION=0
77
PATCH_VERSION=16
8-
RELEASE_SUFFIX=servicing
8+
RELEASE_SUFFIX=
99
CHANNEL=preview
1010
BRANCH_NAME=release/1.0.0
1111
CONTAINER_NAME=dotnet

build_projects/dotnet-host-build/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"dependencies": {
88
"NETStandard.Library": "1.6.0",
9-
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18-servicing-27612-01",
9+
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18",
1010
"Microsoft.CSharp": "4.0.1",
1111
"System.Dynamic.Runtime": "4.0.11",
1212
"System.Reflection.Metadata": "1.3.0",

build_projects/shared-build-targets-utils/DependencyVersions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Microsoft.DotNet.Cli.Build
77
{
88
public class DependencyVersions
99
{
10-
public static readonly string CoreCLRVersion = "1.0.18-servicing-27612-01";
11-
public static readonly string JitVersion = "1.0.18-servicing-27612-01";
10+
public static readonly string CoreCLRVersion = "1.0.18";
11+
public static readonly string JitVersion = "1.0.18";
1212
}
1313
}

build_projects/shared-build-targets-utils/Utils/HostVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public override string ToString()
6262
//
6363

6464
// Full versions and package information.
65-
public static bool EnsureStableVersion => false;
65+
public static bool EnsureStableVersion => true;
6666
public string LatestHostPrerelease => "servicing";
6767
public string LatestHostBuildMajor => CommitCountString;
6868
public string LatestHostBuildMinor => "00";

build_projects/update-dependencies/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dependencies": {
88
"NETStandard.Library": "1.6.0",
99
"Microsoft.CSharp": "4.0.1",
10-
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18-servicing-27612-01",
10+
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18",
1111
"System.Runtime.Serialization.Primitives": "4.1.1",
1212
"Microsoft.DotNet.Cli.Build.Framework": {
1313
"target": "project"

pkg/projects/Microsoft.NETCore.App/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Microsoft.CodeAnalysis.CSharp": "1.3.0",
55
"Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
66
"Microsoft.CSharp": "4.0.1",
7-
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18-servicing-27612-01",
7+
"Microsoft.NETCore.Runtime.CoreCLR": "1.0.18",
88
"Microsoft.VisualBasic": "10.0.1",
99
"NETStandard.Library": "1.6.0",
1010
"System.Buffers": "4.0.0",

0 commit comments

Comments
 (0)