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

Commit ea50f78

Browse files
dotnet-botgkhanna79
authored andcommitted
Update CoreClr, CoreFx to preview1-25230-02, preview1-25301-01, respectively (#11310)
1 parent 98e6afc commit ea50f78

File tree

11 files changed

+31
-31
lines changed

11 files changed

+31
-31
lines changed

dependencies.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
33
<PropertyGroup>
4-
<CoreFxCurrentRef>10667e2a9a601bc5fe5fe5ec8a50b73b3e271000</CoreFxCurrentRef>
5-
<CoreClrCurrentRef>10667e2a9a601bc5fe5fe5ec8a50b73b3e271000</CoreClrCurrentRef>
4+
<CoreFxCurrentRef>8d2a9168a1a6d42e5f9b0804f3fd60d7cd6d2a66</CoreFxCurrentRef>
5+
<CoreClrCurrentRef>8d2a9168a1a6d42e5f9b0804f3fd60d7cd6d2a66</CoreClrCurrentRef>
66
</PropertyGroup>
77

88
<!-- Auto-upgraded properties for each build info dependency. -->
99
<PropertyGroup>
10-
<CoreFxExpectedPrerelease>preview1-25229-02</CoreFxExpectedPrerelease>
10+
<CoreFxExpectedPrerelease>preview1-25301-01</CoreFxExpectedPrerelease>
1111
</PropertyGroup>
1212

1313
<!-- Full package version strings that are used in other parts of the build. -->
1414
<PropertyGroup>
15-
<CoreClrPackageVersion>2.0.0-preview1-25229-01</CoreClrPackageVersion>
15+
<CoreClrPackageVersion>2.0.0-preview1-25230-02</CoreClrPackageVersion>
1616
<XunitPackageVersion>2.2.0-beta2-build3300</XunitPackageVersion>
1717
</PropertyGroup>
1818

tests/src/Common/build_against_pkg_dependencies/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"dependencies": {
3-
"Microsoft.NETCore.ILAsm": "2.0.0-preview1-25229-01",
4-
"Microsoft.NETCore.ILDAsm": "2.0.0-preview1-25229-01",
5-
"Microsoft.NETCore.Jit": "2.0.0-preview1-25229-01",
6-
"Microsoft.NETCore.Runtime.CoreCLR": "2.0.0-preview1-25229-01",
7-
"Microsoft.NETCore.TestHost": "2.0.0-preview1-25229-01"
3+
"Microsoft.NETCore.ILAsm": "2.0.0-preview1-25230-02",
4+
"Microsoft.NETCore.ILDAsm": "2.0.0-preview1-25230-02",
5+
"Microsoft.NETCore.Jit": "2.0.0-preview1-25230-02",
6+
"Microsoft.NETCore.Runtime.CoreCLR": "2.0.0-preview1-25230-02",
7+
"Microsoft.NETCore.TestHost": "2.0.0-preview1-25230-02"
88
},
99
"frameworks": {
1010
"netcoreapp2.0": {

tests/src/Common/netcoreapp/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"Microsoft.NETCore.App": "2.0.0-beta-001494-00",
4-
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25229-02"
4+
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25301-01"
55
},
66
"frameworks": {
77
"netcoreapp2.0": {}

tests/src/Common/targeting_pack_ref/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"Microsoft.TargetingPack.Private.CoreCLR": "2.0.0-preview1-25229-01"
3+
"Microsoft.TargetingPack.Private.CoreCLR": "2.0.0-preview1-25230-02"
44
},
55
"frameworks": {
66
"netcoreapp1.1": {

tests/src/Common/test_dependencies/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"dependencies": {
3-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
4-
"Microsoft.Private.CoreFx.NETCoreApp": "4.4.0-preview1-25229-02",
5-
"System.Memory": "4.4.0-preview1-25229-02",
6-
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25229-02",
7-
"System.Security.Permissions": "4.4.0-preview1-25229-02"
3+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
4+
"Microsoft.Private.CoreFx.NETCoreApp": "4.4.0-preview1-25301-01",
5+
"System.Memory": "4.4.0-preview1-25301-01",
6+
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25301-01",
7+
"System.Security.Permissions": "4.4.0-preview1-25301-01"
88
},
99
"frameworks": {
1010
"netcoreapp2.0": {

tests/src/Common/test_runtime/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
3+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
44
"Microsoft.DotNet.CoreCLR.TestDependencies": "1.0.0-prerelease",
55
"jit-dasm": "0.0.1.4",
66
"cijobs": "0.0.1.2",

tests/src/JIT/config/benchmark+roslyn/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
"xunit.performance.execution": "1.0.0-beta-build0003",
77
"xunit.performance.metrics": "1.0.0-beta-build0003",
88
"Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental",
9-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
9+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
1010
"System.Console": "4.4.0-beta-24913-02",
1111
"System.Dynamic.Runtime": "4.4.0-beta-24913-02",
1212
"System.Linq": "4.4.0-beta-24913-02",
1313
"System.IO.FileSystem": "4.4.0-beta-24913-02",
14-
"System.Numerics.Vectors": "4.4.0-preview1-25229-02",
14+
"System.Numerics.Vectors": "4.4.0-preview1-25301-01",
1515
"System.Reflection": "4.4.0-beta-24913-02",
1616
"System.Reflection.Extensions": "4.4.0-beta-24913-02",
17-
"System.Reflection.TypeExtensions": "4.4.0-preview1-25229-02",
17+
"System.Reflection.TypeExtensions": "4.4.0-preview1-25301-01",
1818
"System.Runtime": "4.4.0-beta-24913-02",
1919
"System.Runtime.Extensions": "4.4.0-beta-24913-02",
2020
"System.Runtime.Numerics": "4.4.0-beta-24913-02",

tests/src/JIT/config/benchmark+serialize/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"xunit.performance.execution": "1.0.0-beta-build0003",
66
"xunit.performance.metrics": "1.0.0-beta-build0003",
77
"Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental",
8-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
8+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
99
"Newtonsoft.Json": "7.0.1",
1010
"System.Console": "4.4.0-beta-24913-02",
1111
"System.IO": "4.4.0-beta-24913-02",
@@ -15,7 +15,7 @@
1515
"System.Dynamic.Runtime": "4.4.0-beta-24913-02",
1616
"System.Reflection": "4.4.0-beta-24913-02",
1717
"System.Reflection.Extensions": "4.4.0-beta-24913-02",
18-
"System.Reflection.TypeExtensions": "4.4.0-preview1-25229-02",
18+
"System.Reflection.TypeExtensions": "4.4.0-preview1-25301-01",
1919
"System.Runtime": "4.4.0-beta-24913-02",
2020
"System.Runtime.Serialization.Json": "4.4.0-beta-24913-02",
2121
"System.Runtime.Serialization.Primitives": "4.4.0-beta-24913-02",

tests/src/JIT/config/benchmark/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"xunit.performance.execution": "1.0.0-beta-build0003",
66
"xunit.performance.metrics": "1.0.0-beta-build0003",
77
"Microsoft.Diagnostics.Tracing.TraceEvent": "1.0.3-alpha-experimental",
8-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
8+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
99
"System.Collections.NonGeneric": "4.4.0-beta-24913-02",
1010
"System.Console": "4.4.0-beta-24913-02",
1111
"System.IO.FileSystem": "4.4.0-beta-24913-02",
1212
"System.Linq": "4.4.0-beta-24913-02",
1313
"System.Linq.Parallel": "4.4.0-beta-24913-02",
1414
"System.Linq.Expressions": "4.4.0-beta-24913-02",
15-
"System.Memory": "4.4.0-preview1-25229-02",
16-
"System.Numerics.Vectors": "4.4.0-preview1-25229-02",
15+
"System.Memory": "4.4.0-preview1-25301-01",
16+
"System.Numerics.Vectors": "4.4.0-preview1-25301-01",
1717
"System.Reflection": "4.4.0-beta-24913-02",
1818
"System.Reflection.Extensions": "4.4.0-beta-24913-02",
19-
"System.Reflection.TypeExtensions": "4.4.0-preview1-25229-02",
19+
"System.Reflection.TypeExtensions": "4.4.0-preview1-25301-01",
2020
"System.Runtime": "4.4.0-beta-24913-02",
21-
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25229-02",
21+
"System.Runtime.CompilerServices.Unsafe": "4.4.0-preview1-25301-01",
2222
"System.Runtime.Extensions": "4.4.0-beta-24913-02",
2323
"System.Runtime.Numerics": "4.4.0-beta-24913-02",
2424
"System.Text.RegularExpressions": "4.4.0-beta-24913-02",

tests/src/TestWrappersConfig/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25229-02",
3+
"Microsoft.NETCore.Platforms": "2.0.0-preview1-25301-01",
44
"xunit": "2.2.0-beta2-build3300",
55
"xunit.assert": "2.2.0-beta2-build3300",
66
"xunit.core": "2.2.0-beta2-build3300",

0 commit comments

Comments
 (0)