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

Commit 85fdecb

Browse files
authored
Merge branch 'master' into fixes/coreclr/19654
2 parents fc192a4 + 9b3ace6 commit 85fdecb

File tree

586 files changed

+14455
-12878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

586 files changed

+14455
-12878
lines changed

BuildToolsVersion.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0-preview1-03430-01
1+
3.0.0-preview1-03603-01

Documentation/building/debugging-instructions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ You can combine steps 4-8 and pass everything on the lldb command line:
5454

5555
For .NET Core version 1.x and 2.0.x, libsosplugin.so is built for and will only work with version 3.6 of lldb. For .NET Core 2.1, the plugin is built for 3.9 lldb and will work with 3.8 and 3.9 lldb.
5656

57+
**Note:** _corerun_ is a simple host that does not support resolving NuGet dependencies. It relies on libraries being locatable via the `CORE_LIBRARIES` environment variable or present in the same directory as the corerun executable. The instructions above are equally applicable to the _dotnet_ host, however - e.g. for step 4 `lldb-3.9 dotnet bin/Debug/netcoreapp2.1/MvcApplication.dll` will let you debug _MvcApplication_ in the same manner.
58+
5759
### SOS commands ###
5860

5961
This is the full list of commands currently supported by SOS. lldb is case-sensitive, unlike windbg.

Documentation/building/viewing-jit-dumps.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ To make sense of the results, it is recommended you also read the [Reading a Jit
66

77
## Setting up our environment
88

9-
The first thing we want to do is setup the .NET Core app we want to dump. Here are the steps to do this, if you don't have one ready:
9+
The first thing to do is setup the .NET Core app we want to dump. Here are the steps to do this, if you don't have one ready:
1010

11-
* Perform a release build of the CoreCLR repo by passing `release` to the build command. You don't need to build tests, so you can pass `skiptests` to the build command to make it faster. Note: the release build can be skipped, but in order to see optimized in the core library it is needed.
11+
* Perform a release build of the CoreCLR repo by passing `release` to the build command. You don't need to build tests, so you can pass `skiptests` to the build command to make it faster. Note: the release build can be skipped, but in order to see optimized code of the core library it is needed.
1212
* Perform a debug build of the CoreCLR repo. Tests aren't needed as in the release build, so you can pass `skiptests` to the build command. Note: the debug build is necessary, so that the JIT recognizes the configuration knobs.
13-
* Install the [.NET CLI 2.1 preview](https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/dogfooding.md), which we'll use to compile/publish our app.
13+
* Install the (latest) [.NET CLI](https://github.com/dotnet/corefx/blob/master/Documentation/project-docs/dogfooding.md), which we'll use to compile/publish our app.
1414
* `cd` to where you want your app to be placed, and run `dotnet new console`.
1515
* Modify your `csproj` file so that it contains a RID (runtime ID) corresponding to the OS you're using in the `<RuntimeIdentifier>` tag. For example, for Windows 10 x64 machine, the project file is:
1616

@@ -19,8 +19,8 @@ The first thing we want to do is setup the .NET Core app we want to dump. Here a
1919

2020
<PropertyGroup>
2121
<OutputType>Exe</OutputType>
22-
<TargetFramework>netcoreapp2.0</TargetFramework>
23-
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
22+
<TargetFramework>netcoreapp3.0</TargetFramework>
23+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
2424
</PropertyGroup>
2525

2626
</Project>
@@ -62,12 +62,12 @@ The first thing we want to do is setup the .NET Core app we want to dump. Here a
6262

6363
```shell
6464
# Windows
65-
robocopy /e <coreclr path>\bin\Product\Windows_NT.<arch>.Release <app root>\bin\Release\netcoreapp2.0\<rid>\publish > NUL
66-
copy <coreclr path>\bin\Product\Windows_NT.<arch>.Debug\clrjit.dll <app root>\bin\Release\netcoreapp2.0\<rid>\publish > NUL
65+
robocopy /e <coreclr path>\bin\Product\Windows_NT.<arch>.Release <app root>\bin\Release\netcoreapp3.0\<rid>\publish > NUL
66+
copy /y <coreclr path>\bin\Product\Windows_NT.<arch>.Debug\clrjit.dll <app root>\bin\Release\netcoreapp3.0\<rid>\publish > NUL
6767

6868
# Unix
69-
cp -rT <coreclr path>/bin/Product/<OS>.<arch>.Release <app root>/bin/Release/netcoreapp2.0/<rid>/publish
70-
cp <coreclr path>/bin/Product/<OS>.<arch>.Debug/libclrjit.so <app root>/bin/Release/netcoreapp2.0/<rid>/publish
69+
cp -rT <coreclr path>/bin/Product/<OS>.<arch>.Release <app root>/bin/Release/netcoreapp3.0/<rid>/publish
70+
cp <coreclr path>/bin/Product/<OS>.<arch>.Debug/libclrjit.so <app root>/bin/Release/netcoreapp3.0/<rid>/publish
7171
```
7272

7373
* Set the configuration knobs you need (see below) and run your published app. The info you want should be dumped to stdout.
@@ -106,6 +106,9 @@ These can be set in one of three ways:
106106
```shell
107107
# Windows
108108
set COMPlus_JitDump=Main
109+
110+
# Powershell
111+
$env:COMPlus_JitDump="Main"
109112

110113
# Unix
111114
export COMPlus_JitDump=Main

Documentation/design-docs/tiered-compilation-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ Tiered compilation is enabled by default from .NET Core 2.2 preview 2 and in 3.0
3838
# Known issues
3939

4040
- There is a known issue with benchmarks written in a simple way (single method with loop), which may run slower with tiered compilation. See the [cold method with hot loops issue](https://github.com/dotnet/coreclr/issues/19751) for information on how to identify the issue and some options for working around it.
41-
- See other known issues in this [known issues query](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aarea-CodeVersioning)
41+
- See known [tiered compilation issues](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aarea-TieredCompilation)
4242

4343
# Providing feedback
4444

4545
- Mention [@noahfalk](https://github.com/noahfalk) and [@kouvel](https://github.com/kouvel) in your feedback
4646
- Share your experiences by posting on the [2.2 issue](https://github.com/dotnet/coreclr/issues/18973)
4747
- For issues:
48-
- Check existing [area-CodeVersioning issues in the CoreCLR repo](https://github.com/dotnet/coreclr/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3Aarea-CodeVersioning+), some may have guidance on how to identify and work around the issue
49-
- File a new issue in the [CoreCLR repo](https://github.com/dotnet/coreclr) with the `area-CodeVersioning` label
48+
- Check existing issues in the CoreCLR repo (see known issues above), some may have guidance on how to identify and work around the issue
49+
- File a new issue in the [CoreCLR repo](https://github.com/dotnet/coreclr) with the `area-TieredCompilation` label
5050
- Tiered compilation may be disabled using the instructions in the "Using Tiered Compilation" section above, just flip the value from 1 to 0 or true to false as appropriate
5151

5252
# Other links

Documentation/project-docs/copyright.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The .NET Core project uses multiple licenses for the various project repositorie
1212

1313
- The [MIT License](https://opensource.org/licenses/MIT) is used by most repositories for [code](https://github.com/dotnet/coreclr/).
1414
- The [Apache 2 License](https://opensource.org/licenses/Apache-2.0) is also used by some projects for [code](https://github.com/dotnet/roslyn/).
15-
- The [Creative Commons Attribution 4.0 International Public License (CC-BY)](https://creativecommons.org/licenses/by/4.0/) license is used for [documentation](https://github.com/dotnet/docs/) and [swag](https://github.com/dotnet/swag).
15+
- The [Creative Commons Attribution 4.0 International Public License (CC-BY)](https://creativecommons.org/licenses/by/4.0/) is used for [documentation](https://github.com/dotnet/docs/) and [swag](https://github.com/dotnet/swag).
1616

1717
Binary License
1818
--------------

ILAsmVersion.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0-preview-27218-02
1+
3.0.0-preview-27308-03

azure-pipelines.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resources:
1818
image: microsoft/dotnet-buildtools-prereqs:ubuntu-16.04-c103199-20180628134544
1919

2020
- container: musl_x64_build_image
21-
image: microsoft/dotnet-buildtools-prereqs:alpine-3.6-e2521f8-20180716231200
21+
image: microsoft/dotnet-buildtools-prereqs:alpine-3.6-WithNode-f4d3fe3-20181220200247
2222

2323
- container: centos7_x64_build_image
2424
image: microsoft/dotnet-buildtools-prereqs:centos-7-d485f41-20173404063424
@@ -202,9 +202,7 @@ jobs:
202202
dependsOn:
203203
- build_Linux_arm_release
204204
- build_Linux_arm64_release
205-
# TODO: depend on musl job once the glibc container issue is fixed
206-
# https://dnceng.visualstudio.com/internal/_workitems/edit/109
207-
# - build_Linux_musl_x64_release
205+
- build_Linux_musl_x64_release
208206
- build_Linux_rhel6_x64_release
209207
- build_Linux_rhel7_x64_release
210208
- build_Linux_x64_release

build-test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ initTargetDistroRid()
6161
fi
6262
else
6363
export __DistroRid="$__HostDistroRid"
64+
export __RuntimeId="$__HostDistroRid"
6465
fi
6566

6667
if [ "$ID.$VERSION_ID" == "ubuntu.16.04" ]; then

build.cmd

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ if /i "%1" == "-usenmakemakefiles" (set __NMakeMakefiles=1&set __ConfigureOnly
182182
if /i "%1" == "-pgoinstrument" (set __PgoInstrument=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
183183
if /i "%1" == "-enforcepgo" (set __EnforcePgo=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
184184
if /i "%1" == "-nopgooptimize" (set __PgoOptimize=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
185-
if /i "%1" == "-ibcoptimize" (set __IbcOptimize=1&set __PartialNgen=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
186-
if /i "%1" == "-ibconly" (set __IbcOptimize=1&set __PartialNgen=1&set __IbcOnly=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
185+
if /i "%1" == "-ibcoptimize" (set __IbcOptimize=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
186+
if /i "%1" == "-ibconly" (set __IbcOptimize=1&set __IbcOnly=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
187187
if /i "%1" == "-ibcinstrument" (set __IbcTuning=/Tuning&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
188188
if /i "%1" == "-crossgenaltjit" (set __CrossgenAltJit=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
189189

@@ -207,7 +207,9 @@ if /i "%1" == "usenmakemakefiles" (set __NMakeMakefiles=1&set __ConfigureOnly=
207207
if /i "%1" == "pgoinstrument" (set __PgoInstrument=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
208208
if /i "%1" == "nopgooptimize" (set __PgoOptimize=0&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
209209
if /i "%1" == "enforcepgo" (set __EnforcePgo=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
210+
if /i "%1" == "ibcoptimize" (set __IbcOptimize=1&set __PartialNgen=1&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
210211
if /i "%1" == "ibcinstrument" (set __IbcTuning=/Tuning&set processedArgs=!processedArgs! %1&shift&goto Arg_Loop)
212+
if /i "%1" == "crossgenaltjit" (set __CrossgenAltJit=%2&set processedArgs=!processedArgs! %1 %2&shift&shift&goto Arg_Loop)
211213

212214
if [!processedArgs!]==[] (
213215
set __UnprocessedBuildArgs=%__args%
@@ -764,10 +766,6 @@ if %__BuildNativeCoreLib% EQU 1 (
764766
set COMPlus_ContinueOnAssert=0
765767
)
766768

767-
if defined __PartialNgen (
768-
set COMPlus_PartialNgen=1
769-
)
770-
771769
set NEXTCMD="%__CrossgenExe%" %__IbcTuning% /Platform_Assemblies_Paths "%__BinDir%"\IL /out "%__BinDir%\System.Private.CoreLib.dll" "%__BinDir%\IL\System.Private.CoreLib.dll"
772770
echo %__MsgPrefix%!NEXTCMD!
773771
echo %__MsgPrefix%!NEXTCMD! >> "%__CrossGenCoreLibLog%"

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ export ghprbCommentBody=
77

88
# resolve python-version to use
99
if [ "$PYTHON" == "" ] ; then
10-
if ! PYTHON=$(command -v python2.7 || command -v python2 || command -v python)
10+
if ! PYTHON=$(command -v python3 || command -v python2 || command -v python)
1111
then
12-
echo "Unable to locate build-dependency python2.x!" 1>&2
12+
echo "Unable to locate build-dependency python!" 1>&2
1313
exit 1
1414
fi
1515
fi
1616
# validate python-dependency
1717
# useful in case of explicitly set option.
1818
if ! command -v $PYTHON > /dev/null
1919
then
20-
echo "Unable to locate build-dependency python2.x ($PYTHON)!" 1>&2
20+
echo "Unable to locate build-dependency python ($PYTHON)!" 1>&2
2121
exit 1
2222
fi
2323

clr.coreclr.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
<FeatureArrayStubAsIL>true</FeatureArrayStubAsIL>
1919
<FeatureMulticastStubAsIL>true</FeatureMulticastStubAsIL>
2020
<FeatureStubsAsIL>true</FeatureStubsAsIL>
21-
22-
<FeatureCoreFxGlobalization>true</FeatureCoreFxGlobalization>
2321
</PropertyGroup>
2422

2523
<PropertyGroup Condition="'$(TargetsWindows)' == 'true'">

clr.defines.targets

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<DefineConstants Condition="'$(FeatureCominteropApartmentSupport)' == 'true'">$(DefineConstants);FEATURE_COMINTEROP_APARTMENT_SUPPORT</DefineConstants>
1616
<DefineConstants Condition="'$(FeatureCominteropUnmanagedActivation)' == 'true'">$(DefineConstants);FEATURE_COMINTEROP_UNMANAGED_ACTIVATION</DefineConstants>
1717
<DefineConstants Condition="'$(FeatureCominteropWinRTManagedActivation)' == 'true'">$(DefineConstants);FEATURE_COMINTEROP_WINRT_MANAGED_ACTIVATION</DefineConstants>
18-
<DefineConstants Condition="'$(FeatureCoreFxGlobalization)' == 'true'">$(DefineConstants);FEATURE_COREFX_GLOBALIZATION</DefineConstants>
1918
<DefineConstants Condition="'$(FeatureManagedEtw)' == 'true'">$(DefineConstants);FEATURE_MANAGED_ETW</DefineConstants>
2019
<DefineConstants Condition="'$(FeatureManagedEtwChannels)' == 'true'">$(DefineConstants);FEATURE_MANAGED_ETW_CHANNELS</DefineConstants>
2120
<DefineConstants Condition="'$(FeaturePal)' == 'true'">$(DefineConstants);FEATURE_PAL</DefineConstants>

clrdefinitions.cmake

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,6 @@ if(WIN32)
9090
endif(WIN32)
9191

9292
# Features - please keep them alphabetically sorted
93-
if (FEATURE_APPDOMAIN_RESOURCE_MONITORING)
94-
add_definitions(-DFEATURE_APPDOMAIN_RESOURCE_MONITORING)
95-
endif(FEATURE_APPDOMAIN_RESOURCE_MONITORING)
96-
9793
if(WIN32)
9894
add_definitions(-DFEATURE_APPX)
9995
if(NOT CLR_CMAKE_TARGET_ARCH_I386)
@@ -116,9 +112,6 @@ if(WIN32)
116112
endif(WIN32)
117113

118114
add_definitions(-DFEATURE_CORECLR)
119-
if (CLR_CMAKE_PLATFORM_UNIX)
120-
add_definitions(-DFEATURE_COREFX_GLOBALIZATION)
121-
endif(CLR_CMAKE_PLATFORM_UNIX)
122115
add_definitions(-DFEATURE_CORESYSTEM)
123116
add_definitions(-DFEATURE_CORRUPTING_EXCEPTIONS)
124117
if(FEATURE_DBGIPC)
@@ -176,9 +169,9 @@ if(CLR_CMAKE_PLATFORM_UNIX)
176169
add_definitions(-DFEATURE_PAL_SXS)
177170
add_definitions(-DFEATURE_PAL_ANSI)
178171
endif(CLR_CMAKE_PLATFORM_UNIX)
179-
if(CLR_CMAKE_PLATFORM_LINUX)
172+
if(CLR_CMAKE_PLATFORM_LINUX OR CLR_CMAKE_PLATFORM_FREEBSD)
180173
add_definitions(-DFEATURE_PERFMAP)
181-
endif(CLR_CMAKE_PLATFORM_LINUX)
174+
endif(CLR_CMAKE_PLATFORM_LINUX OR CLR_CMAKE_PLATFORM_FREEBSD)
182175
add_definitions(-DFEATURE_PREJIT)
183176

184177
if(NOT CLR_CMAKE_PLATFORM_UNIX)

clrfeatures.cmake

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ if(NOT DEFINED FEATURE_INTERPRETER)
2020
set(FEATURE_INTERPRETER 0)
2121
endif(NOT DEFINED FEATURE_INTERPRETER)
2222

23-
if(NOT DEFINED FEATURE_APPDOMAIN_RESOURCE_MONITORING)
24-
set(FEATURE_APPDOMAIN_RESOURCE_MONITORING 1)
25-
endif(NOT DEFINED FEATURE_APPDOMAIN_RESOURCE_MONITORING)
26-
2723
if(NOT DEFINED FEATURE_STANDALONE_GC)
2824
set(FEATURE_STANDALONE_GC 1)
2925
endif(NOT DEFINED FEATURE_STANDALONE_GC)

dependencies.props

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,28 +23,27 @@
2323

2424
<!-- Source of truth for dependency tooling: the commit hash of the dotnet/versions master branch as of the last auto-upgrade. -->
2525
<PropertyGroup>
26-
<CoreFxCurrentRef>4ffdf01885ba0575eb4d8e980315e3e52ff19c0c</CoreFxCurrentRef>
27-
<CoreClrCurrentRef>56b60e4ef0879b0423542f32a0b87779b4236453</CoreClrCurrentRef>
28-
<BuildToolsCurrentRef>c538360fb7bf16505db9b54e4674e54deceb13de</BuildToolsCurrentRef>
29-
<PgoDataCurrentRef>982efb931db09a52623f2021bf1dd670936d980d</PgoDataCurrentRef>
26+
<CoreFxCurrentRef>29a31e91e203ea1986c4779d50ca5a9da347afee</CoreFxCurrentRef>
27+
<CoreClrCurrentRef>29a31e91e203ea1986c4779d50ca5a9da347afee</CoreClrCurrentRef>
28+
<BuildToolsCurrentRef>70dac702228f21ca63c6c226fe782db17610a47a</BuildToolsCurrentRef>
29+
<PgoDataCurrentRef>5d23b39d83ea462fdf749edfb5198c64b8fb9324</PgoDataCurrentRef>
3030
<CoreSetupCurrentRef>56b60e4ef0879b0423542f32a0b87779b4236453</CoreSetupCurrentRef>
3131
<IbcDataCurrentRef>fd9474f0c60ac4f7e917c072df61e4b23115b7ae</IbcDataCurrentRef>
3232
</PropertyGroup>
3333

3434
<!-- Tests/infrastructure dependency versions. -->
3535
<PropertyGroup>
36-
<MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview.18613.4</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
37-
<MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview.18613.4</MicrosoftNETCorePlatformsPackageVersion>
38-
<PgoDataPackageVersion>99.99.99-master-20181210-0037</PgoDataPackageVersion>
39-
<MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview-27218-02</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
36+
<MicrosoftPrivateCoreFxNETCoreAppPackageVersion>4.6.0-preview.19058.1</MicrosoftPrivateCoreFxNETCoreAppPackageVersion>
37+
<MicrosoftNETCorePlatformsPackageVersion>3.0.0-preview.19058.1</MicrosoftNETCorePlatformsPackageVersion>
38+
<PgoDataPackageVersion>99.99.99-master-20190108-0040</PgoDataPackageVersion>
39+
<MicrosoftNETCoreRuntimeCoreCLRPackageVersion>3.0.0-preview-27308-03</MicrosoftNETCoreRuntimeCoreCLRPackageVersion>
4040
<MicrosoftNETCoreAppPackageVersion>3.0.0-preview-27218-01</MicrosoftNETCoreAppPackageVersion>
4141
<XunitPackageVersion>2.4.1</XunitPackageVersion>
4242
<IbcDataPackageVersion>99.99.99-master-20181120-0045</IbcDataPackageVersion>
4343
<IbcMergePackageVersion>4.6.0-alpha-00001</IbcMergePackageVersion>
4444
<XunitPerformanceApiPackageVersion>1.0.0-beta-build0015</XunitPerformanceApiPackageVersion>
4545
<MicrosoftDiagnosticsTracingTraceEventPackageVersion>2.0.4</MicrosoftDiagnosticsTracingTraceEventPackageVersion>
4646
<CommandLineParserVersion>2.2.0</CommandLineParserVersion>
47-
<VCRuntimeVersion>2.0.0</VCRuntimeVersion>
4847

4948
<!-- Scenario tests install this version of Microsoft.NetCore.App, then patch coreclr binaries via xcopy. At the moment it is
5049
updated manually whenever breaking changes require it to move forward, but it would be nice if we could update it automatically
@@ -55,7 +54,7 @@
5554
<!-- Package versions used as toolsets -->
5655
<PropertyGroup>
5756
<FeedTasksPackage>Microsoft.DotNet.Build.Tasks.Feed</FeedTasksPackage>
58-
<FeedTasksPackageVersion>3.0.0-preview1-03430-01</FeedTasksPackageVersion>
57+
<FeedTasksPackageVersion>3.0.0-preview1-03603-01</FeedTasksPackageVersion>
5958
</PropertyGroup>
6059

6160
<!-- Publish symbol build task package -->

eng/Version.Details.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<Dependencies>
33
<ProductDependencies></ProductDependencies>
44
<ToolsetDependencies>
5-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.18616.5">
5+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.18630.2">
66
<Uri>https://github.com/dotnet/arcade</Uri>
7-
<Sha>8694eb83a2c13057a8da3c80f829363de4dc8c9c</Sha>
7+
<Sha>96c87ddd97d9c562ef77f1e4606a0dbb000ab644</Sha>
88
</Dependency>
9-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="1.0.0-beta.18616.5">
9+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="1.0.0-beta.18630.2">
1010
<Uri>https://github.com/dotnet/arcade</Uri>
11-
<Sha>8694eb83a2c13057a8da3c80f829363de4dc8c9c</Sha>
11+
<Sha>96c87ddd97d9c562ef77f1e4606a0dbb000ab644</Sha>
1212
</Dependency>
1313
</ToolsetDependencies>
1414
</Dependencies>

0 commit comments

Comments
 (0)