platform/upstream/coreclr.git
4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20191103.2
dotnet-maestro[bot] [Thu, 7 Nov 2019 20:08:27 +0000 (20:08 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20191103.2

- Microsoft.NETCore.App - 3.1.0-preview3.19553.2

4 years agoFix StreamReader to pass cancellation token into ReadBufferAsync (#27464) (#27501)
Stephen Toub [Thu, 31 Oct 2019 17:06:30 +0000 (13:06 -0400)]
Fix StreamReader to pass cancellation token into ReadBufferAsync (#27464) (#27501)

ReadAsyncInternal is correctly passing its token into the two call sites where it delegates directly to the underlying stream, but in one place it calls through ReadBufferAsync, which is currently not defined to take a token.  Fix that, and pass the token through.

4 years agoSupport large EventSource filter args (#27522)
Noah Falk [Thu, 31 Oct 2019 00:09:33 +0000 (17:09 -0700)]
Support large EventSource filter args (#27522)

1. Fix NullReferenceException. When the filter args exceeded the
hard-coded size limit GetDataFromController would return data = null.
The code previously asserted that data was not null and triggered NRE
when it was. The fix correctly null checks the value instead of
asserting and uses an empty args dictionary in this case, the same as if
filter args had been empty to begin with.

2. ETW has always limited filter args to 1024 bytes but EventPipe has no
such restriction. When using DiagnosticSourceEventSource it can be
useful to specify a larger filter arg blob. I can't do anything about
ETW's restriction but there is no need for the runtime to force
EventPipe to be equally limited. The larger size also reduces the chance
that we need to hit the fallback path above causing filter args to be
ignored.

4 years agoFix minidumps not loading in VS issue (#27553)
Mike McLaughlin [Wed, 30 Oct 2019 23:12:47 +0000 (16:12 -0700)]
Fix minidumps not loading in VS issue (#27553)

Fix a function that was ifdef'ed needed for the metadata locator callbacks to work.

Fix some not properly DAC'ized code in the type desc and server GC code. Caused an exception during dump generation.

Issue: https://github.com/dotnet/coreclr/issues/26907

4 years ago[Release/3.1] Port profiler APIs to set and retrieve environment variables to 3.1...
David Mason [Wed, 30 Oct 2019 18:26:32 +0000 (11:26 -0700)]
[Release/3.1] Port profiler APIs to set and retrieve environment variables to 3.1 (#27512)

4 years agoRebrand to preview3 (#27552)
William Godbe [Wed, 30 Oct 2019 17:52:38 +0000 (10:52 -0700)]
Rebrand to preview3 (#27552)

4 years ago[3.1] Protect against a rare invalid lock acquision attempt during etw processing...
Koundinya Veluri [Thu, 24 Oct 2019 20:06:58 +0000 (13:06 -0700)]
[3.1] Protect against a rare invalid lock acquision attempt during etw processing during shutdown (#27241)

* Protect against a rare invalid lock acquision attempt during etw processing during abrupt shutdown

Targeted and partial fix for https://github.com/dotnet/coreclr/issues/27129
- This is not a generic fix for the issue above, it is only a very targeted fix for an issue seen (a new issue introduced in 3.x). For a generic fix and more details, see the fix in 5.0: https://github.com/dotnet/coreclr/pull/27238.
- This change avoids taking a lock during process detach - a point in time when all other threads have already been abruptly shut down by the OS and locks may have been orphaned.
- The issue leads to a hang during shutdown when ETW tracing is enabled and the .NET process being traced begins the shutdown sequence at an unfortunate time - this is a probably rare timing issue. It would take the shutdown sequence to begin at just the point when a thread holds a particular lock and is terminated by the OS while holding the lock, then the OS sends the process detach event to the CLR, work during which then tries to acquire the lock and cannot because it is orphaned.
- The generic fix has broader consequences and is unlikely to be a reasonable change to make so late in the cycle, such a change needs some bake time and feedback. Hence this targeted fix for 3.x.

* Report tier as unknown when it cannot be determined

* Return unknown only on process detach

4 years agoFix step with stackalloc (#27246) (#27351)
Steve MacLean [Tue, 22 Oct 2019 20:58:15 +0000 (16:58 -0400)]
Fix step with stackalloc (#27246) (#27351)

* Make ControllerStackInfo::m_returnFrame private

* Make ControllerStackInfo always capture a return frame

In case the active frame has no managed caller, capture
the unmanaged frame

* Fix step over stackalloc

Generalize handling of stack allocations and stepping

* Fix GetFunctionFromToken() argument checking

Check token type is a method before creating a CordbFunction.

Add extra assert to check for invalid tokens

4 years agoFix LTTng build for build environments with older liblttng-ust-dev (#27273) (#27294)
Sung Yoon Whang [Mon, 21 Oct 2019 23:04:28 +0000 (16:04 -0700)]
Fix LTTng build for build environments with older liblttng-ust-dev  (#27273) (#27294)

* Fix macro redefinition to use XplatEventLogger instead of simply writing FALSE

* Fix linker error

* undo newline changes

* Some changes to comment

* Move wrapper export from eventpipe.cpp to eventtrace.cpp

4 years ago[Release/3.1] Fixes for profiler stack sampling (#27300)
David Mason [Mon, 21 Oct 2019 20:57:30 +0000 (13:57 -0700)]
[Release/3.1] Fixes for profiler stack sampling  (#27300)

* only set THREAD_IS_SUSPENDED if we are truly doing an async stack walk (#26985)

* Use a new COR_PRF_SUSPEND_FOR_PROFILER in ICorProfilerCallback::RuntimeThreadSuspended() when requested by profiler (#27041)

Fixes https://github.com/dotnet/coreclr/issues/26576

4 years ago[3.1] Backport fixes to ETW/EventPipe events to enable GCDumps (#27297)
John Salem [Mon, 21 Oct 2019 18:22:50 +0000 (11:22 -0700)]
[3.1] Backport fixes to ETW/EventPipe events to enable GCDumps (#27297)

* Move TypeSystemLog::OnKeywordsChanged from EtwCallback to EtwCallbackCommon to enable this same behavior in ETW and EventPipe.   This unblocks parity for GCHeapDumps between ETW and EventPipe (#26270)

* Fix unique ETW events for GC Type logging, so they are also fired across EventPipe (#27250)

4 years agoFix Segfault in PerfInfo Image Logging (#26910)
Brian Robbins [Tue, 15 Oct 2019 18:23:19 +0000 (11:23 -0700)]
Fix Segfault in PerfInfo Image Logging (#26910)

4 years agoFix DecoderNLS.Convert to out the correct value for 'completed' (#27229)
Levi Broderick [Thu, 17 Oct 2019 18:33:32 +0000 (11:33 -0700)]
Fix DecoderNLS.Convert to out the correct value for 'completed' (#27229)

Port https://github.com/dotnet/coreclr/pull/27210 to release/3.1

4 years agoEnable ETW/EventSource logging of task IDs for boxed state machines (#27115) (#27217)
Stephen Toub [Thu, 17 Oct 2019 15:32:29 +0000 (11:32 -0400)]
Enable ETW/EventSource logging of task IDs for boxed state machines (#27115) (#27217)

* Wrap MoveNext Action for TPL event tracing

Wraps the MoveNext action of the AsyncStateMachineBox in a
continuation wrapper when async causality tracing is on so that the
TPL event source can find the task that is associated with a
continuation. Does not wrap otherwise.

* Clarifying comment

* removing trailing whitespace

* code review feedback.

Makes AsyncMethodBuilderCore.TryFindContinuationTask check to
whether the target of a continuation is itself a task, as a fall-back
to checking to see if the continuation is a ContinuationWrapper

* Got rid of unnecessary null checks

4 years agoFix GetSequencePoints when profiler provides mapping via SetILInstrumentedCodeMap...
David Mason [Wed, 16 Oct 2019 20:13:55 +0000 (13:13 -0700)]
Fix GetSequencePoints when profiler provides mapping via SetILInstrumentedCodeMap (#27075)

Port #25802 to 3.1

4 years agoImprove the performance of Environment.WorkingSet in Windows (#26522) (#27212)
Sung Yoon Whang [Wed, 16 Oct 2019 05:08:30 +0000 (22:08 -0700)]
Improve the performance of Environment.WorkingSet in Windows (#26522) (#27212)

* Use win32 api directly for workingset counter

* Fix build warnings

* Removing useless code

* more cleanup

* remove size annotation

* remove useless comment

* Move all the changes to Environment.WorkingSet and remove it from RuntimeEventSourceHelper

* removing useless usings

* Use kernel32.dll instead of psapi.dll

* Code review feedback

* Remove newline change

* More code review nits

4 years agoDo not create diagnostics server thread and pipe if EnableDiagnostics is set to 0...
Sung Yoon Whang [Tue, 15 Oct 2019 01:29:38 +0000 (18:29 -0700)]
Do not create diagnostics server thread and pipe if EnableDiagnostics is set to 0 (#27137) (#27140)

* Do not create diagnostics server thread and pipe if EnableDiagnostics is set to 0

* Remove unnecessary check for config var in DiagnosticServer::Shutdown

4 years agoCorrectly handle variable argument SIMDScalar (#26421) (#26778)
Carol Eidt [Mon, 14 Oct 2019 20:23:46 +0000 (13:23 -0700)]
Correctly handle variable argument SIMDScalar (#26421) (#26778)

* Correctly handle variable argument SIMDScalar

Fix #26286

4 years agoEnable optimized single-proc allocation helpers for single-proc x86/x64 systems only...
Jan Kotas [Mon, 14 Oct 2019 17:25:34 +0000 (10:25 -0700)]
Enable optimized single-proc allocation helpers for single-proc x86/x64 systems only (#27014) (#27080)

Use maximum number of processors the process may run on to determine whether it is ok to use
single-proc allocation helpers. It is not sufficient to depend on current process affinity since
that can change during the process lifetime.

Also, the single-proc allocation helpers work well on x86/x64 systems only because of they depend
on atomic non-interlocked increment instruction for good performance. Such instruction is available
on x86/x64 only. Disable them everywhere else.

Fixes #26990

4 years agoFix available memory extraction on Linux (#26764) (#26938)
agoretsky [Mon, 14 Oct 2019 17:03:12 +0000 (20:03 +0300)]
Fix available memory extraction on Linux (#26764) (#26938)

* Fix available memory extraction on Linux

The GlobalMemoryStatusEx in PAL is returning number of free physical pages in
the ullAvailPhys member. But there are additional pages that are allocated
as buffers and caches that get released when there is a memory pressure and
thus they are effectively available too.

This change extracts the available memory on Linux from the /proc/meminfo
MemAvailable row, which is reported by the kernel as the most precise
amount of available memory.

4 years agopreview2 (#27127)
Anirudh Agnihotry [Thu, 10 Oct 2019 21:07:17 +0000 (14:07 -0700)]
preview2 (#27127)

4 years agoHandle AV caused by invalid IBC data (#27029) (#27034)
Fadi Hanna [Fri, 4 Oct 2019 18:58:23 +0000 (11:58 -0700)]
Handle AV caused by invalid IBC data (#27029) (#27034)

Make FindOrCreateAssociatedMethodDesc throw a type load exception instead of an AV, which can't be handled by EX_TRY/EX_CATCH on Unix systems.

4 years agoImprove TimeSpan precision (#26992) (#27010)
Jan Kotas [Fri, 4 Oct 2019 18:07:23 +0000 (11:07 -0700)]
Improve TimeSpan precision (#26992) (#27010)

Change multiplying by (x * (1.0 / BigValue)) on (x / BigValue).

Fix #41380

4 years agooom (#26457) (#26983)
Maoni Stephens [Thu, 3 Oct 2019 19:44:36 +0000 (12:44 -0700)]
oom (#26457) (#26983)

+ when hardlimit is specified we should only retry when we didn't fail due to commit failure - if commit failed it means we simply didn't have as much memory as what the hardlimit specified. we should throw OOM in this case.

+ added some diag info around OOM history to help with future diagnostics.

(cherry picked from commit 7dca41fd36721068e610c537654765e8e42275d7)

4 years agoFix read ordering bug between buckets pointer and counter (#26997) (#27009)
Fadi Hanna [Thu, 3 Oct 2019 19:08:01 +0000 (12:08 -0700)]
Fix read ordering bug between buckets pointer and counter (#26997) (#27009)

* Fix read ordering bug between buckets pointer and counter

Use VolaiteLoad to read counter

4 years agoMerge pull request #26893 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1
William Godbe [Tue, 1 Oct 2019 17:35:32 +0000 (10:35 -0700)]
Merge pull request #26893 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1

[automated] Merge branch 'release/3.0' => 'release/3.1'

4 years agoMerge branch 'release/3.1' into merge/release/3.0-to-release/3.1
William Godbe [Tue, 1 Oct 2019 17:35:17 +0000 (10:35 -0700)]
Merge branch 'release/3.1' into merge/release/3.0-to-release/3.1

4 years agoAbort FuncEval on unaligned SP (for 3.1) (#26607)
Steve MacLean [Mon, 30 Sep 2019 18:25:42 +0000 (14:25 -0400)]
Abort FuncEval on unaligned SP (for 3.1) (#26607)

* Abort FuncEval on unaligned SP (#26572)
* Check for nullity of the context in FuncEval setup SP alignment checks (#26911)

4 years agoPort to Release/3.1 - enabling MHR support (#26803)
Jan Vorlicek [Fri, 27 Sep 2019 08:47:27 +0000 (10:47 +0200)]
Port to Release/3.1 - enabling MHR support (#26803)

* Move JIT_WriteBarrier that is modified at runtime to a dynamically
allocated memory instead of making a page in libcoreclr.dylib RWX.
* Fix JIT_Stelem_Ref calls to JIT_WriteBarrier
* Update PAL to add MEM_JIT flag for allocations and reservations of
executable memory.
* Update native runtime in EH and stack unwinding areas so that it can
unwind from the write barrier copy. That code has no unwind info, so
without special handling, runtime would not be able to unwind from
it.

4 years agoupdate branding (#26875)
Anirudh Agnihotry [Wed, 25 Sep 2019 17:05:05 +0000 (10:05 -0700)]
update branding (#26875)

4 years agoDo not clip CPU count when CPU quota is used. (#26153) (#26806)
Jan Kotas [Mon, 23 Sep 2019 01:31:09 +0000 (18:31 -0700)]
Do not clip CPU count when CPU quota is used. (#26153) (#26806)

4 years agoPort The Fix When Enabling Windows Compatibilty Mode (#26805)
Tarek Mahmoud Sayed [Sat, 21 Sep 2019 18:24:14 +0000 (11:24 -0700)]
Port The Fix When Enabling Windows Compatibilty Mode (#26805)

4 years ago[release/3.1] Fix marshalling a pinnable multi-dimensional arr… (#26664)
Jeremy Koritzinsky [Tue, 17 Sep 2019 19:26:35 +0000 (12:26 -0700)]
[release/3.1] Fix marshalling a pinnable multi-dimensional arr… (#26664)

* Use the exact methodtable of the parameter to calculate the offset into a pinned array.

4 years agoMerge pull request #26692 from mmitche/merge-to-31
Matt Mitchell [Fri, 13 Sep 2019 00:45:23 +0000 (17:45 -0700)]
Merge pull request #26692 from mmitche/merge-to-31

Merge to release/3.0 -> release/3.1

4 years agoMerge remote-tracking branch 'upstream/release/3.0' into merge-to-31
Matt Mitchell [Thu, 12 Sep 2019 22:47:32 +0000 (15:47 -0700)]
Merge remote-tracking branch 'upstream/release/3.0' into merge-to-31

4 years agoMerge pull request #26620 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1
Matt Mitchell [Thu, 12 Sep 2019 22:44:00 +0000 (15:44 -0700)]
Merge pull request #26620 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1

[automated] Merge branch 'release/3.0' => 'release/3.1'

4 years agoFix watson bucketing/broken triage dumps (#26670)
Mike McLaughlin [Thu, 12 Sep 2019 22:39:39 +0000 (15:39 -0700)]
Fix watson bucketing/broken triage dumps (#26670)

Fix watson bucketing/broken triage dumps

The DAC EnumMemoryRegions needs to include some missing code version
manager memory.

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190911.7 (#26683)
dotnet-maestro[bot] [Thu, 12 Sep 2019 14:45:02 +0000 (14:45 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190911.7 (#26683)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19461.7
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19461.7
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19461.7
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19461.7

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190911.12 (#26682)
dotnet-maestro[bot] [Thu, 12 Sep 2019 14:44:13 +0000 (14:44 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190911.12 (#26682)

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19461.12
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19461.12

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Thu, 12 Sep 2019 14:37:27 +0000 (14:37 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190912.1 (#26681)

- optimization.IBC.CoreCLR - 99.99.99-master-20190912.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190912.1

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190911.13 (#26680)
dotnet-maestro[bot] [Thu, 12 Sep 2019 14:30:47 +0000 (14:30 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190911.13 (#26680)

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19461.13
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19461.13

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190911.7 (#26679)
dotnet-maestro[bot] [Thu, 12 Sep 2019 14:15:05 +0000 (14:15 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190911.7 (#26679)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19461.7
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19461.7
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19461.7
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19461.7

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190910.02 ...
dotnet-maestro[bot] [Wed, 11 Sep 2019 16:44:04 +0000 (16:44 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190910.02 (#26655)

- Microsoft.NETCore.App - 3.0.0-rc2-19460-02

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Wed, 11 Sep 2019 16:23:39 +0000 (16:23 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190911.1 (#26654)

- optimization.IBC.CoreCLR - 99.99.99-master-20190911.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190911.1

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190910.23 (#26656)
dotnet-maestro[bot] [Wed, 11 Sep 2019 15:00:28 +0000 (15:00 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190910.23 (#26656)

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19460.23
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19460.23

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190910.3 (#26657)
dotnet-maestro[bot] [Wed, 11 Sep 2019 14:56:17 +0000 (14:56 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190910.3 (#26657)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19460.3
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19460.3
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19460.3
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19460.3

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190910.22 (#26653)
dotnet-maestro[bot] [Wed, 11 Sep 2019 14:32:11 +0000 (14:32 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190910.22 (#26653)

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19460.22
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19460.22

4 years agoMerge branch 'release/3.1' into merge/release/3.0-to-release/3.1
Anirudh Agnihotry [Wed, 11 Sep 2019 06:24:34 +0000 (23:24 -0700)]
Merge branch 'release/3.1' into merge/release/3.0-to-release/3.1

4 years ago[release/3.1] Update dependencies from dotnet/corefx (#26508)
dotnet-maestro[bot] [Wed, 11 Sep 2019 01:13:29 +0000 (01:13 +0000)]
[release/3.1] Update dependencies from dotnet/corefx (#26508)

* Update dependencies from https://github.com/dotnet/corefx build 20190903.6

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19453.6
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-rc1.19453.6

* Update dependencies from https://github.com/dotnet/corefx build 20190904.8

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19454.8
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-rc1.19454.8

* Update dependencies from https://github.com/dotnet/corefx build 20190906.2

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19456.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19456.2

* changing the target framework for tests to 3.1

* Update dependencies from https://github.com/dotnet/corefx build 20190906.20

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19456.20
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19456.20

* Update dependencies from https://github.com/dotnet/corefx build 20190907.5

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19457.5
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19457.5

* Update dependencies from https://github.com/dotnet/corefx build 20190909.13

- Microsoft.NETCore.Platforms - 3.1.0-preview1.19459.13
- Microsoft.Private.CoreFx.NETCoreApp - 4.7.0-preview1.19459.13

* 3.0 -> 3.1

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190910.3 (#26622)
dotnet-maestro[bot] [Wed, 11 Sep 2019 00:41:31 +0000 (00:41 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190910.3 (#26622)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19460.3
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19460.3
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19460.3
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19460.3

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190909.10 (#26618)
dotnet-maestro[bot] [Tue, 10 Sep 2019 19:44:52 +0000 (12:44 -0700)]
Update dependencies from https://github.com/dotnet/arcade build 20190909.10 (#26618)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19459.10
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19459.10
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19459.10
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19459.10

4 years agoMerge branch 'release/3.1' into merge/release/3.0-to-release/3.1
Anirudh Agnihotry [Tue, 10 Sep 2019 19:42:32 +0000 (12:42 -0700)]
Merge branch 'release/3.1' into merge/release/3.0-to-release/3.1

4 years ago[release/3.0] Update dependencies from dotnet/core-setup (#26563)
dotnet-maestro[bot] [Tue, 10 Sep 2019 19:31:04 +0000 (19:31 +0000)]
[release/3.0] Update dependencies from dotnet/core-setup (#26563)

* Update dependencies from https://github.com/dotnet/core-setup build 20190905.28

- Microsoft.NETCore.App - 3.0.0-rc2-19455-28

* Update dependencies from https://github.com/dotnet/core-setup build 20190907.02

- Microsoft.NETCore.App - 3.0.0-rc2-19457-02

* Update dependencies from https://github.com/dotnet/core-setup build 20190907.15

- Microsoft.NETCore.App - 3.0.0-rc2-19457-15

* Update dependencies from https://github.com/dotnet/core-setup build 20190908.11

- Microsoft.NETCore.App - 3.0.0-rc2-19458-11

* Update dependencies from https://github.com/dotnet/core-setup build 20190909.40

- Microsoft.NETCore.App - 3.0.0-rc2-19459-40

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190910.1 (#26616)
dotnet-maestro[bot] [Tue, 10 Sep 2019 19:13:53 +0000 (19:13 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190910.1 (#26616)

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19460.1
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19460.1

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Tue, 10 Sep 2019 18:59:49 +0000 (18:59 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190910.1 (#26617)

- optimization.IBC.CoreCLR - 99.99.99-master-20190910.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190910.1

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190909.38 ...
dotnet-maestro[bot] [Tue, 10 Sep 2019 18:35:51 +0000 (11:35 -0700)]
Update dependencies from https://github.com/dotnet/core-setup build 20190909.38 (#26619)

- Microsoft.NETCore.App - 3.1.0-preview1.19459.38

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190909.10 (#26615)
dotnet-maestro[bot] [Tue, 10 Sep 2019 14:04:47 +0000 (14:04 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190909.10 (#26615)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19459.10
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19459.10
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19459.10
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19459.10

4 years agoMerge pull request #26510 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1
Anirudh Agnihotry [Tue, 10 Sep 2019 00:21:02 +0000 (17:21 -0700)]
Merge pull request #26510 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1

[automated] Merge branch 'release/3.0' => 'release/3.1'

4 years ago[release/3.1] Update dependencies from dotnet/arcade (#26564)
dotnet-maestro[bot] [Mon, 9 Sep 2019 20:23:15 +0000 (20:23 +0000)]
[release/3.1] Update dependencies from dotnet/arcade (#26564)

* Update dependencies from https://github.com/dotnet/arcade build 20190905.21

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19455.21
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19455.21
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19455.21
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19455.21

* Update dependencies from https://github.com/dotnet/arcade build 20190906.10

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19456.10
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19456.10
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19456.10
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19456.10

* Update dependencies from https://github.com/dotnet/arcade build 20190907.1

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19457.1
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19457.1
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19457.1
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19457.1

* Update dependencies from https://github.com/dotnet/arcade build 20190908.2

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19458.2
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19458.2
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19458.2
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19458.2

4 years agoMerge branch 'release/3.0' into release/3.1
Anipik [Mon, 9 Sep 2019 19:12:40 +0000 (12:12 -0700)]
Merge branch 'release/3.0' into release/3.1

4 years ago[release/3.0] Update dependencies from dotnet/arcade (#26560)
dotnet-maestro[bot] [Mon, 9 Sep 2019 17:13:03 +0000 (10:13 -0700)]
[release/3.0] Update dependencies from dotnet/arcade (#26560)

* Update dependencies from https://github.com/dotnet/arcade build 20190905.21

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19455.21
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19455.21
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19455.21
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19455.21

* Update dependencies from https://github.com/dotnet/arcade build 20190906.10

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19456.10
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19456.10
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19456.10
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19456.10

* Update dependencies from https://github.com/dotnet/arcade build 20190907.1

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19457.1
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19457.1
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19457.1
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19457.1

* Update dependencies from https://github.com/dotnet/arcade build 20190908.2

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19458.2
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19458.2
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19458.2
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19458.2

4 years ago[release/3.0] Update dependencies from dotnet/corefx (#26561)
dotnet-maestro[bot] [Mon, 9 Sep 2019 17:12:38 +0000 (10:12 -0700)]
[release/3.0] Update dependencies from dotnet/corefx (#26561)

* Update dependencies from https://github.com/dotnet/corefx build 20190906.1

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19456.1
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19456.1

* Update dependencies from https://github.com/dotnet/corefx build 20190907.2

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19457.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19457.2

* Update dependencies from https://github.com/dotnet/corefx build 20190907.8

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19457.8
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19457.8

* Update dependencies from https://github.com/dotnet/corefx build 20190908.3

- Microsoft.NETCore.Platforms - 3.0.0-rc2.19458.3
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc2.19458.3

4 years ago[release/3.1] Update dependencies from dotnet/core-setup (#26565)
dotnet-maestro[bot] [Mon, 9 Sep 2019 17:11:25 +0000 (10:11 -0700)]
[release/3.1] Update dependencies from dotnet/core-setup (#26565)

* Update dependencies from https://github.com/dotnet/core-setup build 20190905.31

- Microsoft.NETCore.App - 3.1.0-preview1.19455.31

* Update dependencies from https://github.com/dotnet/core-setup build 20190907.3

- Microsoft.NETCore.App - 3.1.0-preview1.19457.3

* Update dependencies from https://github.com/dotnet/core-setup build 20190907.10

- Microsoft.NETCore.App - 3.1.0-preview1.19457.10

* Update dependencies from https://github.com/dotnet/core-setup build 20190908.7

- Microsoft.NETCore.App - 3.1.0-preview1.19458.7

4 years ago[release/3.0] Update dependencies from dnceng/internal/dotnet-optimization (#26588)
dotnet-maestro[bot] [Mon, 9 Sep 2019 17:10:33 +0000 (10:10 -0700)]
[release/3.0] Update dependencies from dnceng/internal/dotnet-optimization (#26588)

* Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190908.1

- optimization.IBC.CoreCLR - 99.99.99-master-20190908.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190908.1

* Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190909.1

- optimization.IBC.CoreCLR - 99.99.99-master-20190909.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190909.1

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Fri, 6 Sep 2019 01:12:40 +0000 (01:12 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190905.1 (#26528)

- optimization.IBC.CoreCLR - 99.99.99-master-20190905.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190905.1

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190904.16 ...
dotnet-maestro[bot] [Fri, 6 Sep 2019 00:06:31 +0000 (00:06 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190904.16 (#26532)

- Microsoft.NETCore.App - 3.1.0-preview1.19454.16

4 years agorc2 version updated (#26548)
Anirudh Agnihotry [Thu, 5 Sep 2019 23:36:54 +0000 (16:36 -0700)]
rc2 version updated (#26548)

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190905.3 (#26541)
dotnet-maestro[bot] [Thu, 5 Sep 2019 22:35:17 +0000 (15:35 -0700)]
Update dependencies from https://github.com/dotnet/arcade build 20190905.3 (#26541)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19455.3
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19455.3
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19455.3
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19455.3

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190904.31 (#26526)
dotnet-maestro[bot] [Thu, 5 Sep 2019 20:38:10 +0000 (20:38 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190904.31 (#26526)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19454.31
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19454.31
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19454.31
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19454.31

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190904.31 (#26531)
dotnet-maestro[bot] [Thu, 5 Sep 2019 15:19:35 +0000 (15:19 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190904.31 (#26531)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19454.31
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19454.31
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19454.31
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19454.31

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190905.02 ...
dotnet-maestro[bot] [Thu, 5 Sep 2019 15:01:02 +0000 (15:01 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190905.02 (#26529)

- Microsoft.NETCore.App - 3.0.0-rc1-19455-02

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190904.13 (#26527)
dotnet-maestro[bot] [Thu, 5 Sep 2019 14:49:24 +0000 (14:49 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190904.13 (#26527)

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19454.13
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19454.13

4 years ago[release/3.0] Update dependencies from dotnet/core-setup (#26464)
dotnet-maestro[bot] [Wed, 4 Sep 2019 18:27:39 +0000 (18:27 +0000)]
[release/3.0] Update dependencies from dotnet/core-setup (#26464)

* Update dependencies from https://github.com/dotnet/core-setup build 20190830.09

- Microsoft.NETCore.App - 3.0.0-rc1-19430-09

* Update dependencies from https://github.com/dotnet/core-setup build 20190903.06

- Microsoft.NETCore.App - 3.0.0-rc1-19453-06

4 years ago[release/3.0] Update dependencies from dotnet/arcade (#26448)
dotnet-maestro[bot] [Wed, 4 Sep 2019 18:09:06 +0000 (18:09 +0000)]
[release/3.0] Update dependencies from dotnet/arcade (#26448)

* Update dependencies from https://github.com/dotnet/arcade build 20190829.16

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19429.16
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19429.16
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19429.16
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19429.16

* Update dependencies from https://github.com/dotnet/arcade build 20190830.3

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19430.3
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19430.3
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19430.3
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19430.3

* Update dependencies from https://github.com/dotnet/arcade build 20190903.5

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19453.5
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19453.5
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19453.5
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19453.5

4 years ago[release/3.0] Update dependencies from dotnet/corefx (#26328)
dotnet-maestro[bot] [Wed, 4 Sep 2019 14:19:29 +0000 (14:19 +0000)]
[release/3.0] Update dependencies from dotnet/corefx (#26328)

* Update dependencies from https://github.com/dotnet/corefx build 20190822.11

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19422.11
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19422.11

* Update dependencies from https://github.com/dotnet/corefx build 20190823.9

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19423.9
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19423.9

* Update dependencies from https://github.com/dotnet/corefx build 20190824.3

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19424.3
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19424.3

* Update dependencies from https://github.com/dotnet/corefx build 20190825.2

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19425.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19425.2

* Update dependencies from https://github.com/dotnet/corefx build 20190826.11

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19426.11
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19426.11

* Update dependencies from https://github.com/dotnet/corefx build 20190827.14

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19427.14
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19427.14

* Update dependencies from https://github.com/dotnet/corefx build 20190828.2

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19428.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19428.2

* Update dependencies from https://github.com/dotnet/corefx build 20190903.4

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19453.4
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19453.4

4 years ago[release/3.0] Update dependencies from dnceng/internal/dotnet-optimization (#26463)
dotnet-maestro[bot] [Mon, 2 Sep 2019 13:32:35 +0000 (13:32 +0000)]
[release/3.0] Update dependencies from dnceng/internal/dotnet-optimization (#26463)

* Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190831.1

- optimization.IBC.CoreCLR - 99.99.99-master-20190831.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190831.1

* Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190902.1

- optimization.IBC.CoreCLR - 99.99.99-master-20190902.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190902.1

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Fri, 30 Aug 2019 14:16:05 +0000 (14:16 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190830.1 (#26449)

- optimization.IBC.CoreCLR - 99.99.99-master-20190830.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190830.1

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190829.07 ...
dotnet-maestro[bot] [Fri, 30 Aug 2019 14:10:44 +0000 (14:10 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190829.07 (#26450)

- Microsoft.NETCore.App - 3.0.0-rc1-19429-07

4 years agoupdate the package version to 3.1.0 (#26422)
Anirudh Agnihotry [Fri, 30 Aug 2019 04:34:47 +0000 (21:34 -0700)]
update the package version to 3.1.0  (#26422)

* update the package version

* Update dir.common.props

4 years agoEmit RVA Instead of File Offset by Default in Native Image PerfMap Files (#26423)
Brian Robbins [Thu, 29 Aug 2019 17:06:48 +0000 (10:06 -0700)]
Emit RVA Instead of File Offset by Default in Native Image PerfMap Files (#26423)

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Thu, 29 Aug 2019 14:52:24 +0000 (14:52 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190829.1 (#26433)

- optimization.IBC.CoreCLR - 99.99.99-master-20190829.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190829.1

4 years ago[release/3.0] Update dependencies from dotnet/core-setup (#26414)
dotnet-maestro[bot] [Thu, 29 Aug 2019 14:47:17 +0000 (14:47 +0000)]
[release/3.0] Update dependencies from dotnet/core-setup (#26414)

* Update dependencies from https://github.com/dotnet/core-setup build 20190827.13

- Microsoft.NETCore.App - 3.0.0-rc1-19427-13

* Update dependencies from https://github.com/dotnet/core-setup build 20190828.14

- Microsoft.NETCore.App - 3.0.0-rc1-19428-14

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190828.9 (#26432)
dotnet-maestro[bot] [Thu, 29 Aug 2019 14:40:04 +0000 (14:40 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190828.9 (#26432)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19428.9
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19428.9
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19428.9
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19428.9

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Wed, 28 Aug 2019 23:41:49 +0000 (23:41 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190828.1 (#26413)

- optimization.IBC.CoreCLR - 99.99.99-master-20190828.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190828.1

4 years ago[release/3.0] Update dependencies from dotnet/arcade (#26327)
dotnet-maestro[bot] [Wed, 28 Aug 2019 16:03:51 +0000 (09:03 -0700)]
[release/3.0] Update dependencies from dotnet/arcade (#26327)

* Update dependencies from https://github.com/dotnet/arcade build 20190822.24

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19422.24
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19422.24
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19422.24
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19422.24

* Update dependencies from https://github.com/dotnet/arcade build 20190823.6

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19423.6
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19423.6
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19423.6
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19423.6

* Update dependencies from https://github.com/dotnet/arcade build 20190824.1

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19424.1
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19424.1
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19424.1
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19424.1

* Update dependencies from https://github.com/dotnet/arcade build 20190825.1

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19425.1
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19425.1
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19425.1
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19425.1

* Update dependencies from https://github.com/dotnet/arcade build 20190826.12

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19426.12
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19426.12
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19426.12
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19426.12

* Update dependencies from https://github.com/dotnet/arcade build 20190827.8

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19427.8
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19427.8
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19427.8
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19427.8

4 years agoReplace Ubuntu 1404 platforms with 1604 (#26302) (#26399)
Fadi Hanna [Tue, 27 Aug 2019 22:26:52 +0000 (15:26 -0700)]
Replace Ubuntu 1404 platforms with 1604 (#26302) (#26399)

Replace Ubuntu 1404 platforms with 1604 (#26302) (#26399)

4 years agoMove testing jobs to a separate stage after the validation/publishing stage (#26334...
Fadi Hanna [Tue, 27 Aug 2019 22:22:21 +0000 (15:22 -0700)]
Move testing jobs to a separate stage after the validation/publishing stage (#26334) (#26397)

* Move testing jobs to a separate stage after the validation/publishing stage

4 years agoFix Abbreviated Genitive Month Names Parsing (#26384)
Tarek Mahmoud Sayed [Tue, 27 Aug 2019 19:51:12 +0000 (12:51 -0700)]
Fix Abbreviated Genitive Month Names Parsing (#26384)

In 3.0 we have fixed the formatting to use the abbreviated genitive month names when having "d" format specifier followed by "MMM". This fix is good as original formatting specs required but we needed to support the parsing when we have such genitive names.

4 years agoUpdate dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimizati...
dotnet-maestro[bot] [Tue, 27 Aug 2019 18:38:44 +0000 (18:38 +0000)]
Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20190827.1 (#26388)

- optimization.IBC.CoreCLR - 99.99.99-master-20190827.1
- optimization.PGO.CoreCLR - 99.99.99-master-20190827.1

4 years ago[release/3.0] Update dependencies from dotnet/core-setup (#26329)
dotnet-maestro[bot] [Tue, 27 Aug 2019 14:26:45 +0000 (14:26 +0000)]
[release/3.0] Update dependencies from dotnet/core-setup (#26329)

* Update dependencies from https://github.com/dotnet/core-setup build 20190822.14

- Microsoft.NETCore.App - 3.0.0-rc1-19422-14

* Update dependencies from https://github.com/dotnet/core-setup build 20190823.11

- Microsoft.NETCore.App - 3.0.0-rc1-19423-11

* Update dependencies from https://github.com/dotnet/core-setup build 20190825.03

- Microsoft.NETCore.App - 3.0.0-rc1-19425-03

* Update dependencies from https://github.com/dotnet/core-setup build 20190826.11

- Microsoft.NETCore.App - 3.0.0-rc1-19426-11

4 years agoDo not use `AllocateUninitializedArray` in private array pools. (#26338) (#26366)
Stephen Toub [Mon, 26 Aug 2019 21:25:15 +0000 (17:25 -0400)]
Do not use `AllocateUninitializedArray` in private array pools. (#26338) (#26366)

User may have extra expectations for the privatly owned array pools.
For example there could be an expectation that array never contains negative numbers (since user never puts them there). Uninitialized allocations can break such expectations.

4 years ago[release/3.0] Fix BinaryReader.ReadChars for fragmented Streams (#26324) (#26356)
Jan Kotas [Mon, 26 Aug 2019 15:04:09 +0000 (08:04 -0700)]
[release/3.0] Fix BinaryReader.ReadChars for fragmented Streams (#26324) (#26356)

BinaryReader.ReadChars incorrectly read more than necessary from the underlying Stream when multi-byte characters straddled the read chunks.

Fixes https://github.com/dotnet/corefx/issues/40455

4 years agoadding ci legs to 3.1 branch (#26216)
Anirudh Agnihotry [Sat, 24 Aug 2019 02:55:49 +0000 (19:55 -0700)]
adding ci legs to 3.1 branch (#26216)

* adding ci legs to 3.1 branch

* removing regex and adding branches as regex was not working

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190821.4 (#26317)
dotnet-maestro[bot] [Fri, 23 Aug 2019 01:17:59 +0000 (01:17 +0000)]
Update dependencies from https://github.com/dotnet/arcade build 20190821.4 (#26317)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19421.4
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19421.4
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19421.4
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19421.4

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190821.22 ...
dotnet-maestro[bot] [Fri, 23 Aug 2019 01:17:52 +0000 (01:17 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190821.22 (#26318)

- Microsoft.NETCore.App - 3.0.0-rc1-19421-22

4 years agoUpdate dependencies from https://github.com/dotnet/arcade build 20190820.8 (#26290)
dotnet-maestro[bot] [Wed, 21 Aug 2019 15:20:55 +0000 (08:20 -0700)]
Update dependencies from https://github.com/dotnet/arcade build 20190820.8 (#26290)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19420.8
- Microsoft.DotNet.Build.Tasks.Feed - 2.2.0-beta.19420.8
- Microsoft.DotNet.Build.Tasks.Packaging - 1.0.0-beta.19420.8
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.19420.8

4 years agoUpdate dependencies from https://github.com/dotnet/core-setup build 20190820.08 ...
dotnet-maestro[bot] [Wed, 21 Aug 2019 14:27:30 +0000 (14:27 +0000)]
Update dependencies from https://github.com/dotnet/core-setup build 20190820.08 (#26292)

- Microsoft.NETCore.App - 3.0.0-rc1-19420-08

4 years agoUpdate dependencies from https://github.com/dotnet/corefx build 20190820.10 (#26291)
dotnet-maestro[bot] [Wed, 21 Aug 2019 14:16:35 +0000 (14:16 +0000)]
Update dependencies from https://github.com/dotnet/corefx build 20190820.10 (#26291)

- Microsoft.NETCore.Platforms - 3.0.0-rc1.19420.10
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-rc1.19420.10

4 years agoUpdate branding to rc1 (#26282)
Matt Mitchell [Wed, 21 Aug 2019 00:00:09 +0000 (17:00 -0700)]
Update branding to rc1 (#26282)

4 years agoPort stage work for 3.0 (#26137) (#26285)
dotnet-maestro-bot [Tue, 20 Aug 2019 23:22:22 +0000 (16:22 -0700)]
Port stage work for 3.0 (#26137) (#26285)

* Add support for servicing (post-build.yml)