platform/upstream/dotnet/runtime.git
5 years agoSqlClient spanify netcore guid writes (dotnet/corefx#34390)
Wraith2 [Thu, 10 Jan 2019 19:40:29 +0000 (19:40 +0000)]
SqlClient spanify netcore guid writes (dotnet/corefx#34390)

* add netcore specific stackalloc paths for guid writes

* remove temp byte array allocation in favour of direct span

* remove reliance on span zeroing on allocation

* change to branch and explain why clear is needed

* split netstandard and netcore #ifdef regions out into conditionally included files
revised WriteGuid, WriteFloat and WriteDouble to use new Get*Bytes functions

* convert single line netcoreapp variants to expression body form

* rename Get*Bytes to Fill*Bytes

Commit migrated from https://github.com/dotnet/corefx/commit/36037e16523a947aa2de05eca587a6a3bd5d18b5

5 years agoRemove UNC path check from System.Drawing.Icon.ExtractAssociatedIcon (dotnet/corefx...
Marco Rossignoli [Thu, 10 Jan 2019 19:13:18 +0000 (20:13 +0100)]
Remove UNC path check from System.Drawing.Icon.ExtractAssociatedIcon (dotnet/corefx#34467)

* remove UNC check

* add ActiveIssue to test

* address PR feedback

* address PR feedback

Commit migrated from https://github.com/dotnet/corefx/commit/fd999b17c19a6f6cef0eb6be8c2df5bdb3f863e7

5 years agoFix ConvertDirent for AIX by always returning PAL_DT_UNKNOWN (dotnet/corefx#34088)
Calvin Buckley [Thu, 10 Jan 2019 18:41:31 +0000 (14:41 -0400)]
Fix ConvertDirent for AIX by always returning PAL_DT_UNKNOWN (dotnet/corefx#34088)

* Fix ConvertDirent for AIX by always returning PAL_DT_UNKNOWN

I commited the sin of untested code, as this function wasn't wired
up to Mono's BCL until a few days ago, and I had triggered the
situation where I needed this working by purging stale build
artifacts.

What happened here was me being too clever; I tried stat, but
we only have the file name, and from the unmanaged call stack this
would run in, we'd have no way to get the directory it's in
(without butchering the function signature) to properly use stat
for non-cwd directories. This meant that the check would get random
garbage on the stack; sometimes the data for "..", sometimes
another function would clobber it, and it'd read that. This caused
the Mono gensources tool to act erratically, preventing the BCL
from building.

Fix this by always returning DT_UNKNOWN. This isn't ideal, but the
BCL seems to handle this with grace and does a stat afterwards
to properly fill in data. It's enough to get the Mono build from
scratch working again. (The stat bit was verified by me running the
syscall tracing tool, `truss` over it, plus Mono's JIT trace.)

* Handle DT_UNKNOWN cases in FileSystemEntry.Initialize

On some OSes like AIX, we return DT_UNKNOWN as a sentinel value,
because they don't have a type field in dirent. If so, or the OS
does return a type and we got an unknown, also set symlink status
if so when making the managed equivalent structures.

TimeZoneInfo.Unix also calls ReadDir and thus ConvertDirent, but
it does this logic already.

* Move symlink check to its own if-elif block

Commit migrated from https://github.com/dotnet/corefx/commit/c34dd2fb843c45ad135ef2b0348c06224e15c736

5 years agoUpdate CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview.19059.7, beta-27310-00...
dotnet-maestro-bot [Thu, 10 Jan 2019 12:57:58 +0000 (04:57 -0800)]
Update CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview.19059.7, beta-27310-00, beta-27310-00, respectively (dotnet/corefx#34483)

Commit migrated from https://github.com/dotnet/corefx/commit/976248ec183ae510777ef284cf9c065243025675

5 years agoMerge pull request dotnet/corefx#34458 from geoffkizer/httpclienttest
Geoff Kizer [Thu, 10 Jan 2019 04:02:19 +0000 (20:02 -0800)]
Merge pull request dotnet/corefx#34458 from geoffkizer/httpclienttest

Clean up HttpClientTest

Commit migrated from https://github.com/dotnet/corefx/commit/94a2d0e52360f24d08c26191e20dfa8f015f9f68

5 years agoSecurityIdentifier.ToString test fixes (dotnet/corefx#34399)
Wraith2 [Thu, 10 Jan 2019 02:32:42 +0000 (02:32 +0000)]
SecurityIdentifier.ToString test fixes (dotnet/corefx#34399)

* SecurityIdentifier.ToString test fixes

* enable SecurityIdentifier.ToString tests

* address feedback

Commit migrated from https://github.com/dotnet/corefx/commit/0abe7d6454f6e08ab335661493c7b8b2abc314ea

5 years agoRe-enable GenerateGuidForType exception tests (dotnet/corefx#34408)
Stephen Toub [Thu, 10 Jan 2019 01:31:34 +0000 (20:31 -0500)]
Re-enable GenerateGuidForType exception tests (dotnet/corefx#34408)

Commit migrated from https://github.com/dotnet/corefx/commit/f7b09b1af8318b457d55a6f14943a3fa36127960

5 years agoRe-enable ReleaseComObject_NullObject_ThrowsNullReferenceException test (dotnet/coref...
Stephen Toub [Thu, 10 Jan 2019 01:30:16 +0000 (20:30 -0500)]
Re-enable ReleaseComObject_NullObject_ThrowsNullReferenceException test (dotnet/corefx#34405)

Commit migrated from https://github.com/dotnet/corefx/commit/48b367299a1ed4d79a6ab6eecd6897c78ce5d8ef

5 years agoUpdate CoreClr, ProjectNTfs, ProjectNTfsTestILC to preview-27309-02, beta-27309-01...
dotnet-maestro-bot [Wed, 9 Jan 2019 22:30:03 +0000 (14:30 -0800)]
Update CoreClr, ProjectNTfs, ProjectNTfsTestILC to preview-27309-02, beta-27309-01, beta-27309-01, respectively (dotnet/corefx#34456)

Commit migrated from https://github.com/dotnet/corefx/commit/2c214ecfa72a6162c397a1285cac1b8126d57a0d

5 years agoMitigate potential case where allocated marshal data is aligned to th… (dotnet/corefx...
Aaron Robinson [Wed, 9 Jan 2019 21:49:26 +0000 (13:49 -0800)]
Mitigate potential case where allocated marshal data is aligned to th… (dotnet/corefx#34445)

* Mitigate potential case where allocated marshal data is aligned to the primitive being read.
 - Int16 and Int8.

Commit migrated from https://github.com/dotnet/corefx/commit/724acf974be58159518b9302197fa278dc90b194

5 years agofix UWP test
Geoff Kizer [Wed, 9 Jan 2019 20:49:33 +0000 (12:49 -0800)]
fix UWP test

Commit migrated from https://github.com/dotnet/corefx/commit/3fb6dd4a0298f61a1a896a0d29e117d8ee95af0f

5 years agoBump ReportGenerator to 4.0.5 stable (dotnet/corefx#34468)
Viktor Hofer [Wed, 9 Jan 2019 19:24:54 +0000 (20:24 +0100)]
Bump ReportGenerator to 4.0.5 stable (dotnet/corefx#34468)

Commit migrated from https://github.com/dotnet/corefx/commit/2918c74fc5a8f01c685b26553cdb1efcc985e43b

5 years agorename HttpClientTestBase to HttpClientHandlerTestBase
Geoff Kizer [Wed, 9 Jan 2019 10:44:04 +0000 (02:44 -0800)]
rename HttpClientTestBase to HttpClientHandlerTestBase

Commit migrated from https://github.com/dotnet/corefx/commit/b26e2a66e5c41c3263caf5fdaa8a1811dd360e33

5 years agoremove handler dependency in HttpClientTest
Geoff Kizer [Wed, 2 Jan 2019 00:13:07 +0000 (16:13 -0800)]
remove handler dependency in HttpClientTest

Commit migrated from https://github.com/dotnet/corefx/commit/93719a61bb57729d940a8f20d7884e06dd935af7

5 years agoFixing up the S.R.Intrinsics ref assembly (dotnet/corefx#34449)
Tanner Gooding [Wed, 9 Jan 2019 02:38:26 +0000 (18:38 -0800)]
Fixing up the S.R.Intrinsics ref assembly (dotnet/corefx#34449)

Commit migrated from https://github.com/dotnet/corefx/commit/f3d808ac786dec0bd0a9b1e58cd49320c2059387

5 years agoMerge pull request dotnet/corefx#34438 from benaadams/filesystemwatcher-osx
Stephen Toub [Wed, 9 Jan 2019 02:34:14 +0000 (21:34 -0500)]
Merge pull request dotnet/corefx#34438 from benaadams/filesystemwatcher-osx

Handle flowsuppressed context in FileSystemWatcher on OSX

Commit migrated from https://github.com/dotnet/corefx/commit/cc86198e5b3c3b48be87f634d5474e124a6d93cc

5 years agoMerge pull request dotnet/corefx#34406 from stephentoub/clearlocals
Stephen Toub [Wed, 9 Jan 2019 01:22:19 +0000 (20:22 -0500)]
Merge pull request dotnet/corefx#34406 from stephentoub/clearlocals

Enable ILLinkClearInitLocals across corefx

Commit migrated from https://github.com/dotnet/corefx/commit/b26339b6f6c7537875c70b5f3c8af376d0bbded5

5 years agoModify FormatDescription test (dotnet/corefx#34440)
Maryam Ariyan [Wed, 9 Jan 2019 00:18:07 +0000 (16:18 -0800)]
Modify FormatDescription test (dotnet/corefx#34440)

* Fix FormatDescription Error

* Fix FormatDescription Test

Commit migrated from https://github.com/dotnet/corefx/commit/bcfcb83d63fb8dfe1ec09ce45ba6fca8191d12d3

5 years agoMerge pull request dotnet/corefx#34268 from AfsanehR/CredentialsFixMaster
Keerat Singh [Tue, 8 Jan 2019 23:59:29 +0000 (15:59 -0800)]
Merge pull request dotnet/corefx#34268 from AfsanehR/CredentialsFixMaster

Fix passing null for credentials in SqlConnectionPoolKey in master

Commit migrated from https://github.com/dotnet/corefx/commit/2ff4a40aa0865e4bcaf85016188c77d52b24ec56

5 years agoFix Helix Repo Name to be dotnet/corefx in telemetry (dotnet/corefx#34448)
Santiago Fernandez Madero [Tue, 8 Jan 2019 23:59:07 +0000 (15:59 -0800)]
Fix Helix Repo Name to be dotnet/corefx in telemetry (dotnet/corefx#34448)

Commit migrated from https://github.com/dotnet/corefx/commit/bbc48e258b10344207cc329c4340f3babf3aadb3

5 years agoEnable helix telemetry for official builds and PRs (dotnet/corefx#34441)
Santiago Fernandez Madero [Tue, 8 Jan 2019 23:42:09 +0000 (15:42 -0800)]
Enable helix telemetry for official builds and PRs (dotnet/corefx#34441)

* Enable helix telemetry for official builds and PRs

* Only send telemetry for official builds

Commit migrated from https://github.com/dotnet/corefx/commit/2acc3e4858d5305bbf8b51d5f3797c1cd41c3912

5 years agoFix sorted list syncroot test (dotnet/corefx#34446)
Dan Moseley [Tue, 8 Jan 2019 23:36:06 +0000 (15:36 -0800)]
Fix sorted list syncroot test (dotnet/corefx#34446)

Commit migrated from https://github.com/dotnet/corefx/commit/cba3c6416f311779dc77e25161d450b1456ec0ab

5 years agoremove extra watcher
Ben Adams [Tue, 8 Jan 2019 23:27:08 +0000 (23:27 +0000)]
remove extra watcher

Commit migrated from https://github.com/dotnet/corefx/commit/b20a4917f19243a6ec2b12ae420736ac83cb05a0

5 years agoFeedback
Ben Adams [Tue, 8 Jan 2019 23:23:07 +0000 (23:23 +0000)]
Feedback

Commit migrated from https://github.com/dotnet/corefx/commit/08fa194915024438cf1bbdf47ccd4f45f5f42ec7

5 years agoFeedback
Ben Adams [Tue, 8 Jan 2019 22:37:23 +0000 (22:37 +0000)]
Feedback

Commit migrated from https://github.com/dotnet/corefx/commit/c82d211923fe5a2bd6381f717df951cf4c11dbf0

5 years agoAdd Test
Ben Adams [Tue, 8 Jan 2019 22:24:11 +0000 (22:24 +0000)]
Add Test

Commit migrated from https://github.com/dotnet/corefx/commit/c3ccfe22c1ec06d2b158697f765d4d456e348c71

5 years agoHandle flowsuppressed context in FileSystemWatcher on OSX
Ben Adams [Tue, 8 Jan 2019 22:04:56 +0000 (22:04 +0000)]
Handle flowsuppressed context in FileSystemWatcher on OSX

Commit migrated from https://github.com/dotnet/corefx/commit/f3b83a9e73dcda79dec41b44963b46a0ff8c7fa4

5 years agoUpdate CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27308-03, preview...
dotnet-maestro-bot [Tue, 8 Jan 2019 22:23:42 +0000 (14:23 -0800)]
Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27308-03, preview.19058.1, beta-27308-00, beta-27308-00, respectively (dotnet/corefx#34375)

Commit migrated from https://github.com/dotnet/corefx/commit/d9f66e827ccec86f8663878206a7431f1a1c2cf9

5 years agoFix path length 255 (dotnet/corefx#34389)
Dan Moseley [Tue, 8 Jan 2019 18:16:06 +0000 (10:16 -0800)]
Fix path length 255 (dotnet/corefx#34389)

* long name test

* typo

* typo

* Enable test as WSL fixed

* Disable test for WSL

* Test update

* Fix tests

* Properly reuse buffer length

* Fix actual bug

* Tests for create on Linux

* Extend to unix

* netfx

* Update interop file

Commit migrated from https://github.com/dotnet/corefx/commit/23521cc75428e38b8ff62cbac188c86b32184d42

5 years agoStop building native components for netfx (dotnet/corefx#34382)
Viktor Hofer [Tue, 8 Jan 2019 17:01:35 +0000 (18:01 +0100)]
Stop building native components for netfx (dotnet/corefx#34382)

* Stop building native components for netfx

* Remove unnecessary condition in build.proj

Commit migrated from https://github.com/dotnet/corefx/commit/492a1f993c347f3c4b0f64ab7fc20b3b095b5f1d

5 years agoAdd SyncSortedList serialization test and remove SyncRoot (dotnet/corefx#34339)
Viktor Hofer [Tue, 8 Jan 2019 16:46:36 +0000 (17:46 +0100)]
Add SyncSortedList serialization test and remove SyncRoot (dotnet/corefx#34339)

* Add SyncSortedList serialization tests and remove SyncRoot

* Disable blob comparison for SyncSortedList

On UWP we get different blobs for SyncSortedList as reflection behaves
differently as the amount of types that we tests is less than in
.NET Core and .NET Framework. The order of fields that are serialized
into the payload are different in such a case.
Therefore we just disable the blob comparison for this type entirely.

Commit migrated from https://github.com/dotnet/corefx/commit/de591233c04efa019ea2aed0a8fc5181f6d4210b

5 years agoPass DecodeObject pointer length to callback
Stephen Toub [Mon, 7 Jan 2019 22:33:11 +0000 (17:33 -0500)]
Pass DecodeObject pointer length to callback

Commit migrated from https://github.com/dotnet/corefx/commit/5e906172943897d032080e3d991b1cee96561ad0

5 years agoFix clearing of stackallocs in X509Certificates
Stephen Toub [Mon, 7 Jan 2019 01:40:44 +0000 (20:40 -0500)]
Fix clearing of stackallocs in X509Certificates

Commit migrated from https://github.com/dotnet/corefx/commit/0b7d7dfbc34c10ec229d759f8c7a3a653cac99c2

5 years agoClear stack space in BigInteger.Multiply/Square
Stephen Toub [Sun, 6 Jan 2019 20:33:46 +0000 (15:33 -0500)]
Clear stack space in BigInteger.Multiply/Square

Commit migrated from https://github.com/dotnet/corefx/commit/0630e45348f392a019d6b55c2100a9ee9cea8b30

5 years agoChange BitHelper in System.Collections to be a ref struct
Stephen Toub [Sun, 6 Jan 2019 15:25:16 +0000 (10:25 -0500)]
Change BitHelper in System.Collections to be a ref struct

Simplifies BitHelper, basing it on span instead of having to accomodate both pointers and arrays, and avoids allocating the BitHelper instance.  We now also clear the input optionally.

Commit migrated from https://github.com/dotnet/corefx/commit/82ce02db86987eb8947b9f09b76cd0658aaf2dce

5 years agoSet ILLinkClearInitLocals across repo
Stephen Toub [Sun, 6 Jan 2019 20:49:40 +0000 (15:49 -0500)]
Set ILLinkClearInitLocals across repo

Enable it for all C# src projects.

Commit migrated from https://github.com/dotnet/corefx/commit/4b5b5c163b925400b884dac2bf207d189b69bd3b

5 years agoFix UriParser static table thread safety (dotnet/corefx#34411)
Stephen Toub [Tue, 8 Jan 2019 14:09:24 +0000 (09:09 -0500)]
Fix UriParser static table thread safety (dotnet/corefx#34411)

There are two static Dictionaries in UriParser that are read without holding a lock and modified while holding a lock; while it is safe for any number of readers to be concurrently accessing a dictionary, it is not safe for any positive number of readers to be doing so while there's at least one writer.  Based on how this code is written, my assumption is that at some point is was implemented using Hashtable, which does make such a situation safe.  As such, I'm fixing it by just switching back to using Hashtable; in the process, I'm also removing the static cctor and fixing a few readonly statics to instead be const.

I considered a few alternate implementations, including using an immutable dictionary, but this approach is simple and fast enough, and doesn't incur some of the costs other schemes would.

Commit migrated from https://github.com/dotnet/corefx/commit/47b47e0b2247856f1cf630535b7d821ea2ad60eb

5 years agoAdd EventLog Reader to the System.Diagnostics.EventLog dll/package (dotnet/corefx...
Tomasz Heimowski [Tue, 8 Jan 2019 08:12:24 +0000 (09:12 +0100)]
Add EventLog Reader to the System.Diagnostics.EventLog dll/package (dotnet/corefx#33662)

* Adding EventLog Reader to the System.Diagnostics.EventLog dll/package.

This addresses issue  https://github.com/dotnet/corefx/issues/31358

The code came from https://github.com/PowerShell/PowerShell/tree/master/src/Microsoft.PowerShell.CoreCLR.Eventing, which in turn came from the .NET Desktop framework Dll System.Core.dll.   It was slightly modified to conform to codeing conventions, but there should be no semantic changes.

Note that System.Diagnostic.EventLog already exists as a Nuget package and is part of the Microsoft.Windows.Compatability Nuget package.    Previously this package/DLL only containd the 'write' APIs associated with the Windows EventLog.  This adds the EventLogReader and associated classes.

This package is mostly useful for .NET Core users who need to read the windows EventLog.

This PR is not ready to check in because there are no tests for the reader functionality.  This is where we need some community help.  Basicaly we need
some tests (fill out hte EventReaderTests.cs file).

If you are willing to help please leave a comment to that effect.  You can pull this pull request to your fork and immediately start adding tests.    We will
figure out how to get all edits pushed in when that time arrives.

* Application Event Log Record test

* Application Event Log Query Record test

* Nested Event Log tests

* Event Log Watcher tests

* Fix copyright headers

* Ran VS formatter on all files

* Combine tests using Theory in EventLogReaderTests

* Add more tests

* Reach 60% Code coverage

* - Removes SecurityCritical and SecuritySafeCritical attributes
- Removes unecessary or duplicated comments
- Removed extra blank lines
- Use nameof on ArgumentNullException calls

* Fix XML doc

* Remove dead EventPropertyContext

* Test fixes

* - Fix failing tests, moves test statements to ..Throws/..ReturnsEmpty
- Uses exact type rather than var
- lower case for variable name
- Remove [UnmanagedType.Bool] when redundant in UnsafeNativeMethods

 Conflicts:
src/System.Diagnostics.EventLog/tests/EventLogReaderTests/EventLogSessionTests.cs

* - Minor comment cleanup
- using goes outside of namespace

* - Removes SuppressUnmanagedCodeSecurityAttribute attribute
- Minor comment and spacing cleanup

* - Move tests to proper folder and add coverage

* Add more test coverage and apply some review feedbacks

* - Switch condition for two more tests to IsElevatedAndSupportsEventLogs
- Simplify ReadEventPsh using ReadEvent rather than duplicated code block
- Remove comment
- Add comment explaining why I comment out: session.ClearLog(logName: "Application")
- Remove and sort usings
- code cleanup

* Attempt to fix CI failures

* Skip test on netfx fixing FormatDescription bug

* Add test for EventLogSesstion.ClearLog(..)

* Add missing Dispose on EventRecord

Commit migrated from https://github.com/dotnet/corefx/commit/ca9550b649151c30698fbd6e0445f50d3b7385d4

5 years agoRevert "Fix runtime.depproj allconfigurations restore" (dotnet/corefx#34409)
Davis Goodin [Tue, 8 Jan 2019 01:00:41 +0000 (19:00 -0600)]
Revert "Fix runtime.depproj allconfigurations restore" (dotnet/corefx#34409)

This reverts commit dotnet/corefx@98aac1eab50bcc379c14e85fb1f530d2858cc8f6.

Commit migrated from https://github.com/dotnet/corefx/commit/97d3ca8b3ed8c0af48ac4f346b00553e1d2cecd8

5 years agoUse VS2017 always as project generator in native build (dotnet/corefx#34412)
Santiago Fernandez Madero [Mon, 7 Jan 2019 23:17:03 +0000 (15:17 -0800)]
Use VS2017 always as project generator in native build (dotnet/corefx#34412)

Commit migrated from https://github.com/dotnet/corefx/commit/875c9842c94fdf3885a7cd28497d492bdd584543

5 years agoUpdate issue-guide.md
Josh Free [Mon, 7 Jan 2019 21:58:18 +0000 (13:58 -0800)]
Update issue-guide.md

Minor January corefx namespace ownership shuffle

1. JeremyKuhne ->
    1. changes from Primary to Backup owner for System.Buffers (moves to layomia)
2. krwq ->
    1. changes from Primary to Backup owner for System.Text.Encoding (moves to layomia)
    2. removed as Backup owner for System.Text.Encodings.Web
3. layomia ->
    1. add as Primary owner for System.Buffers
    2. add as Primary owner for System.Text.Encoding
    3. add as Backup owner for System.Text.Encodings.Web

Commit migrated from https://github.com/dotnet/corefx/commit/cfc15f4413215449a75dbb44f16cafa569aacf4a

5 years agodotnet/corefxdotnet/corefx#34200 Bring `XmlRawTextWriterGenerator.cxx` up to date...
Joseph Lennox [Mon, 7 Jan 2019 19:34:23 +0000 (11:34 -0800)]
dotnet/corefxdotnet/corefx#34200 Bring `XmlRawTextWriterGenerator.cxx` up to date. (dotnet/corefx#34224)

* dotnet/corefxdotnet/corefx#34200 Bring `XmlRawTextWriterGenerator.cxx` up to date.

* dotnet/corefxdotnet/corefx#34200 Convert `XmlRawTextWriterGenerator.cxx` to t4.

* dotnet/corefxdotnet/corefx#34200 Normalize the inconsistent use of `this`

* dotnet/corefxdotnet/corefx#34200 Make XmlRawTextWriterGenerator run at compile time.

* dotnet/corefxdotnet/corefx#34200 Generate Xml*RawTextWriterAsync.cs files.

These files appear to of never been from a generation process but are
near identical.

* dotnet/corefxdotnet/corefx#34200 Normalize `this` in XmlRawTextWriterGeneratorAsync

* dotnet/corefxdotnet/corefx#34200 Convert Html*RawTextWriter.cs to t4 template.

* dotnet/corefxdotnet/corefx#34200 Convert Text*RawTextWriter.cs to t4 template.

* dotnet/corefxdotnet/corefx#34200 Normalize use of `this` in Html*RawTextWriter.

* dotnet/corefxdotnet/corefx#34200 Fix leading whitespace/bug #

* dotnet/corefxdotnet/corefx#34200 Add warning to generate files about modifying them.

Also fix the oversight that XmlRawTextWriterGeneratorAsync.ttinclude didn't
use the newer RawTextWriter.ttinclude abstraction.

* dotnet/corefxdotnet/corefx#34200 Make code generation produce better formatted code.

Commit migrated from https://github.com/dotnet/corefx/commit/a0e5f73d0c0876840bc4f3745e1ca8385a91cfcf

5 years agoRemove HAVE_VSNPRINTF block from CMakeLists
Viktor Hofer [Sat, 5 Jan 2019 19:06:23 +0000 (20:06 +0100)]
Remove HAVE_VSNPRINTF block from CMakeLists

Commit migrated from https://github.com/dotnet/corefx/commit/66985ca21f89e4d2230f5fcb99f4e8b3d618c9af

5 years agoAdd include for check symbol exists in cmakelists
Viktor Hofer [Sat, 5 Jan 2019 18:03:37 +0000 (19:03 +0100)]
Add include for check symbol exists in cmakelists

Commit migrated from https://github.com/dotnet/corefx/commit/0c1d1d43170f259600749ce93850962374692e97

5 years agoUpdate cmakelists vs check
Viktor Hofer [Sat, 5 Jan 2019 17:58:35 +0000 (18:58 +0100)]
Update cmakelists vs check

Commit migrated from https://github.com/dotnet/corefx/commit/bfe0055b8bfdccf4834d7ff576bae4064e90fa3e

5 years agoMove minimum VS version to 2017
Viktor [Sat, 5 Jan 2019 13:34:49 +0000 (14:34 +0100)]
Move minimum VS version to 2017

Commit migrated from https://github.com/dotnet/corefx/commit/d2724104fc711c5f0d47c4c23bf3a1d50f036286

5 years agoFix runtime.depproj allconfigurations restore (dotnet/corefx#34332)
Davis Goodin [Mon, 7 Jan 2019 19:16:45 +0000 (13:16 -0600)]
Fix runtime.depproj allconfigurations restore (dotnet/corefx#34332)

* Fix runtime.depproj allconfigurations restore

Use default PackageRID for RuntimeIdentifier, not the overridden value
from build args. In allconfigurations mode, using PackageRID can cause
the wrong assets to be restored for other configurations.

* Incorporate $(RuntimeOS)-$(ArchGroup) defaulting

Commit migrated from https://github.com/dotnet/corefx/commit/98aac1eab50bcc379c14e85fb1f530d2858cc8f6

5 years agoCleanup publish.proj to use arcade's target to push to blob feed (dotnet/corefx#34373)
Santiago Fernandez Madero [Mon, 7 Jan 2019 17:57:41 +0000 (09:57 -0800)]
Cleanup publish.proj to use arcade's target to push to blob feed (dotnet/corefx#34373)

Commit migrated from https://github.com/dotnet/corefx/commit/21e5926a140fc76dfa54e3e80e4cb87b04e33a6d

5 years agoFix S.Drawing.Common perf runs
Viktor [Mon, 7 Jan 2019 13:48:34 +0000 (14:48 +0100)]
Fix S.Drawing.Common perf runs

Commit migrated from https://github.com/dotnet/corefx/commit/b6d532f5f408560ecec2fb217390f9ac274f370c

5 years agoDisable failing ValidateToStringUsingWhoami/ValidateToString tests (dotnet/corefx...
Stephen Toub [Sun, 6 Jan 2019 23:00:34 +0000 (18:00 -0500)]
Disable failing ValidateToStringUsingWhoami/ValidateToString tests (dotnet/corefx#34396)

* Disable failing ValidateToStringUsingWhoami test

* Also disable ValidateToString

It similarly assumes the sddl begins with S-1-5-, which mine does not.

Commit migrated from https://github.com/dotnet/corefx/commit/2bf00161a1e89db28d62330043165d7c30da25b3

5 years agoRemove some unnecessary Substrings in System.Net.Http (dotnet/corefx#34356)
Stephen Toub [Sat, 5 Jan 2019 18:45:29 +0000 (13:45 -0500)]
Remove some unnecessary Substrings in System.Net.Http (dotnet/corefx#34356)

Commit migrated from https://github.com/dotnet/corefx/commit/bcd20ce6fa0c7580ac4976cb50747687d07d96b2

5 years agoFix paths with spaces in ilproj
Viktor [Sat, 5 Jan 2019 10:46:50 +0000 (11:46 +0100)]
Fix paths with spaces in ilproj

Commit migrated from https://github.com/dotnet/corefx/commit/e38bad57a66fd6140da5953a182cd1c3a4ef332a

5 years agoFix python invocation in perf runs
Viktor [Sat, 5 Jan 2019 10:46:35 +0000 (11:46 +0100)]
Fix python invocation in perf runs

Commit migrated from https://github.com/dotnet/corefx/commit/271aa6c8bc65d0e9232f44646ca3ef3afacbb818

5 years agoInitialize TraceEvent dependencies correctly
Viktor [Fri, 4 Jan 2019 14:52:45 +0000 (15:52 +0100)]
Initialize TraceEvent dependencies correctly

Commit migrated from https://github.com/dotnet/corefx/commit/9c736899cd63805d7bbf69095d9b32915b9e1858

5 years agoFix unix perf runs
Viktor [Fri, 4 Jan 2019 13:45:04 +0000 (14:45 +0100)]
Fix unix perf runs

Commit migrated from https://github.com/dotnet/corefx/commit/6ec1a4e15a89ddcbe0dce1f31f0a9eda268aa729

5 years agoset the nanoseconds properties deterministically (dotnet/corefx#34362)
Anirudh Agnihotry [Fri, 4 Jan 2019 23:20:57 +0000 (15:20 -0800)]
set the nanoseconds properties deterministically (dotnet/corefx#34362)

Commit migrated from https://github.com/dotnet/corefx/commit/db259b0302a866e2ff31a7d2c343abcc176ba4f4

5 years agoDisable TestService tests on NETFX (dotnet/corefx#34365)
Dan Moseley [Fri, 4 Jan 2019 23:05:34 +0000 (15:05 -0800)]
Disable TestService tests on NETFX (dotnet/corefx#34365)

Commit migrated from https://github.com/dotnet/corefx/commit/96a13e8f2ddad96f065dfe64e074fb099899bc5d

5 years agoMerge pull request dotnet/corefx#34347 from geoffkizer/decomptests
Geoff Kizer [Fri, 4 Jan 2019 22:40:30 +0000 (14:40 -0800)]
Merge pull request dotnet/corefx#34347 from geoffkizer/decomptests

consolidate decompression tests

Commit migrated from https://github.com/dotnet/corefx/commit/814775ca14faff98602ad2d33f8f443e1e7dce24

5 years agoReact to ApiCompat and GenAPI cmd changes
Viktor [Thu, 3 Jan 2019 16:12:56 +0000 (17:12 +0100)]
React to ApiCompat and GenAPI cmd changes

Commit migrated from https://github.com/dotnet/corefx/commit/bffbb115f0c02051836ca72790b85d3a2c8aa71f

5 years agoFix build error with space in pathFix buildtools restore with paths with spaces
Viktor [Wed, 2 Jan 2019 16:51:05 +0000 (17:51 +0100)]
Fix build error with space in pathFix buildtools restore with paths with spaces

Commit migrated from https://github.com/dotnet/corefx/commit/76ad9b00cc1b7d7ed40b16934d534df756c0ffed

5 years agoSplit official build tests results type and print mc url (dotnet/corefx#34371)
Santiago Fernandez Madero [Fri, 4 Jan 2019 22:19:31 +0000 (14:19 -0800)]
Split official build tests results type and print mc url (dotnet/corefx#34371)

Commit migrated from https://github.com/dotnet/corefx/commit/579dcb0ec20aed31e2cd9e172eb278543d3935be

5 years agoDisable ProcessStart_OpenFileOnLinux_UsesSpecifiedProgramUsingArgumentList on Alpine...
Dan Moseley [Fri, 4 Jan 2019 21:18:46 +0000 (13:18 -0800)]
Disable ProcessStart_OpenFileOnLinux_UsesSpecifiedProgramUsingArgumentList on Alpine (dotnet/corefx#34360)

Commit migrated from https://github.com/dotnet/corefx/commit/ddbbb7c83211f07a8731601a8cf26b85dd16ff76

5 years agoMerge pull request dotnet/corefx#34354 from dotnet-maestro-bot/master-UpdateDependencies
Josh Free [Fri, 4 Jan 2019 19:28:23 +0000 (11:28 -0800)]
Merge pull request dotnet/corefx#34354 from dotnet-maestro-bot/master-UpdateDependencies

Update CoreClr, CoreFx to preview-27304-02, preview.19054.1, respectively (master)

Commit migrated from https://github.com/dotnet/corefx/commit/4f3baf982bbeacdd164cf125f839f91787816d2d

5 years agoRemove stale comments from System.Linq.Queryable (dotnet/corefx#34357)
Stephen Toub [Fri, 4 Jan 2019 18:31:44 +0000 (13:31 -0500)]
Remove stale comments from System.Linq.Queryable (dotnet/corefx#34357)

Commit migrated from https://github.com/dotnet/corefx/commit/491631805be037bdf05dc67cab873874fadcd01e

5 years agoUpdate CoreClr, CoreFx to preview-27304-02, preview.19054.1, respectively
dotnet-maestro-bot [Fri, 4 Jan 2019 15:12:11 +0000 (07:12 -0800)]
Update CoreClr, CoreFx to preview-27304-02, preview.19054.1, respectively

Commit migrated from https://github.com/dotnet/corefx/commit/5f009736e46746fb6aaef810dc2bb2f64ed6bf84

5 years agoDo not add Request-Id header when its added already (dotnet/corefx#34321)
Liudmila Molkova [Fri, 4 Jan 2019 14:00:07 +0000 (06:00 -0800)]
Do not add Request-Id header when its added already (dotnet/corefx#34321)

Commit migrated from https://github.com/dotnet/corefx/commit/fe6e895de1fe78c5e677895a1dcf1f6339561153

5 years agoUpdate ProjectNTfs, ProjectNTfsTestILC to beta-27304-00, beta-27304-00, respectively...
dotnet-maestro-bot [Fri, 4 Jan 2019 12:40:08 +0000 (04:40 -0800)]
Update ProjectNTfs, ProjectNTfsTestILC to beta-27304-00, beta-27304-00, respectively (dotnet/corefx#34348)

Commit migrated from https://github.com/dotnet/corefx/commit/58163f5881deff10680fcc590ead08532cbf6f54

5 years agoAdd StringExtensions.Concat to fix Microsoft.IO.Redist assembly
Stephen Toub [Fri, 4 Jan 2019 02:26:46 +0000 (21:26 -0500)]
Add StringExtensions.Concat to fix Microsoft.IO.Redist assembly

Commit migrated from https://github.com/dotnet/corefx/commit/52dddbb7c067442b093735a6856d4ef76430753a

5 years agoUpdate BuildTools, CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview1-03603...
dotnet-maestro-bot [Fri, 4 Jan 2019 06:13:51 +0000 (22:13 -0800)]
Update BuildTools, CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview1-03603-01, preview-27304-01, preview.19053.3, beta-27303-00, beta-27303-00, respectively (dotnet/corefx#34323)

Commit migrated from https://github.com/dotnet/corefx/commit/f74b39562ad0e3b33715172d48eced02c7ca384f

5 years agoMerge pull request dotnet/corefx#34324 from vcsjones/32913-oaep-cek
Jeremy Barton [Fri, 4 Jan 2019 06:07:55 +0000 (22:07 -0800)]
Merge pull request dotnet/corefx#34324 from vcsjones/32913-oaep-cek

Support SHA2 for OAEP decryption in EnvelopedCms

Commit migrated from https://github.com/dotnet/corefx/commit/3c6662c9b96b8fae2c3fb3191d14b9b0a76909a5

5 years agoAdded SHA2 OAEP decryption support for EnvelopedCms CEK.
Kevin Jones [Thu, 3 Jan 2019 06:18:19 +0000 (01:18 -0500)]
Added SHA2 OAEP decryption support for EnvelopedCms CEK.

Fixes dotnet/corefx#32913.

Commit migrated from https://github.com/dotnet/corefx/commit/1de58afa5edd914cbc50cb2cbcf87cc4278b10b8

5 years agoFix typo in parameter name.
Kevin Jones [Thu, 3 Jan 2019 02:06:31 +0000 (21:06 -0500)]
Fix typo in parameter name.

Commit migrated from https://github.com/dotnet/corefx/commit/74f041bdfb2ccf9a42ffeb5a000808c24a1a18d9

5 years agoincrease tries to 20 (dotnet/corefx#34342)
Anirudh Agnihotry [Fri, 4 Jan 2019 02:00:04 +0000 (18:00 -0800)]
increase tries to 20 (dotnet/corefx#34342)

Commit migrated from https://github.com/dotnet/corefx/commit/df4c956d32654e77e799e538a67a2c7b13e656d4

5 years agoconsolidate decompression tests
Geoff Kizer [Fri, 4 Jan 2019 01:33:45 +0000 (17:33 -0800)]
consolidate decompression tests

Commit migrated from https://github.com/dotnet/corefx/commit/474b87aeaa9c0ddfe411d3a5d473a20c35f28622

5 years agoMerge pull request dotnet/corefx#34307 from geoffkizer/redirecttests
Geoff Kizer [Thu, 3 Jan 2019 22:58:52 +0000 (14:58 -0800)]
Merge pull request dotnet/corefx#34307 from geoffkizer/redirecttests

split redirect tests into separate file

Commit migrated from https://github.com/dotnet/corefx/commit/b4ff5f37b4e425e8ab8a5f6cbe62b0373d72437f

5 years agoUse ValueStringBuilder instead of StringBuilderCache in PathInternal.Windows.cs
Stephen Toub [Thu, 3 Jan 2019 16:34:52 +0000 (11:34 -0500)]
Use ValueStringBuilder instead of StringBuilderCache in PathInternal.Windows.cs

Commit migrated from https://github.com/dotnet/corefx/commit/94cf6be593098451257e96406b39fd9790d121b5

5 years agoUpdate ubuntu arm64 queues to 1804 in official builds (dotnet/corefx#34337)
Santiago Fernandez Madero [Thu, 3 Jan 2019 21:04:44 +0000 (13:04 -0800)]
Update ubuntu arm64 queues to 1804 in official builds (dotnet/corefx#34337)

Commit migrated from https://github.com/dotnet/corefx/commit/020b88ca7cd23ccff37eea8eba9d59d52ec8d3cd

5 years agoFix missing dash in LDAP test server example (dotnet/corefx#34336)
zivillian [Thu, 3 Jan 2019 20:07:19 +0000 (21:07 +0100)]
Fix missing dash in LDAP test server example (dotnet/corefx#34336)

* fix missing dash

* fix copied configuration

Commit migrated from https://github.com/dotnet/corefx/commit/e48041feb1a4b9660eb0d26e2e43241237da0eaf

5 years agoFix testhost depproj chmod when win host restored (dotnet/corefx#34335)
Davis Goodin [Thu, 3 Jan 2019 19:44:30 +0000 (13:44 -0600)]
Fix testhost depproj chmod when win host restored (dotnet/corefx#34335)

When building on Linux, this Exec assumes a Linux configuration is
restored so the testhost package it picks up will have dotnet. This
fails with '-allconfigurations' when a Windows configuration is used and
the restore actually got dotnet.exe. This change detects whatever dotnet
file was actually restored and runs chmod on that.

Commit migrated from https://github.com/dotnet/corefx/commit/70d08ae0b1f2487f0684a66be364a988f181567d

5 years agoRefactor DllImports for System.Security.Cryptography.Pkcs to share in Common/Interop
Roman Marusyk [Thu, 3 Jan 2019 18:28:46 +0000 (20:28 +0200)]
Refactor DllImports for System.Security.Cryptography.Pkcs to share in Common/Interop

Commit migrated from https://github.com/dotnet/corefx/commit/e32bdde06baadcc02143e012bdc7929ceb57c071

5 years agoPer issue dotnet/corefx#34302, removed an extra 0x1a at end of file. (dotnet/corefx...
Dong Xie [Thu, 3 Jan 2019 16:10:08 +0000 (16:10 +0000)]
Per issue dotnet/corefx#34302, removed an extra 0x1a at end of file. (dotnet/corefx#34328)

Commit migrated from https://github.com/dotnet/corefx/commit/5c55936c24bb6a2038d3eb5a68d4a51011d02284

5 years agoRevert "Expose Marshall.LoadLibrary API" (dotnet/corefx#34322)
Swaroop Sridhar [Thu, 3 Jan 2019 04:53:10 +0000 (20:53 -0800)]
Revert "Expose Marshall.LoadLibrary API" (dotnet/corefx#34322)

In API review: https://github.com/dotnet/corefx/issues/32015,

The LoadLibrary APIs were originally Approved to live in
System.Runtime.InteropServices.Marshal class.
https://github.com/dotnet/corefx/issues/32015#issuecomment-428775858

However, recently the decision was changed such that the APIs are in a new NativeLibrary class.
https://github.com/dotnet/corefx/issues/32015#issuecomment-448324606

Therefore, undoing the changes to Marshal API.
I'll submit another PR for System.Runtime.InteropServices.NativeLibrary
once the corresponding change in CoreCLR is checked in.

This reverts commit dotnet/corefx@859351c2f65e73e94c9c40983e53b33c5b45014a.

Commit migrated from https://github.com/dotnet/corefx/commit/6d59e6ab54bb313ea5eb6a809dc64a7cebe8ee64

5 years agoUsing FUTIMENS instead of FUTIMES (dotnet/corefx#34271)
Anirudh Agnihotry [Wed, 2 Jan 2019 23:12:21 +0000 (15:12 -0800)]
Using FUTIMENS instead of FUTIMES (dotnet/corefx#34271)

* test added

* rearranging order for if statements

* reducing thread sleep time and reverting millisecond test change

* adding comment

* removing comment, adding tick equality check, failing if not able to create file with non-zero nano or milli second

* correcting test for hfs system

* NanoSeconds -> Nanoseconds, Millisec -> milliseconds
HFs assert converted to false

Commit migrated from https://github.com/dotnet/corefx/commit/83e468591a0212f109c179c2f4b75ef03c92432b

5 years agoUpdate CoreClr, CoreFx to preview-27302-02, preview.19052.1, respectively (dotnet...
dotnet-maestro-bot [Wed, 2 Jan 2019 18:02:30 +0000 (10:02 -0800)]
Update CoreClr, CoreFx to preview-27302-02, preview.19052.1, respectively (dotnet/corefx#34311)

Commit migrated from https://github.com/dotnet/corefx/commit/6e8d162c1486d1473a74263894e509bc85a1b861

5 years agoUpdate CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27302-01, preview...
dotnet-maestro-bot [Wed, 2 Jan 2019 13:48:06 +0000 (05:48 -0800)]
Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27302-01, preview.19051.1, beta-27302-00, beta-27302-00, respectively (dotnet/corefx#34245)

Commit migrated from https://github.com/dotnet/corefx/commit/3e84824e93861dbf0b53a7f111ec211d9f787c2b

5 years agoDon't Sleep(1) in some spin-wait loops (Fx) (dotnet/corefx#34288)
Koundinya Veluri [Wed, 2 Jan 2019 13:31:47 +0000 (05:31 -0800)]
Don't Sleep(1) in some spin-wait loops (Fx) (dotnet/corefx#34288)

Fx counterpart to https://github.com/dotnet/coreclr/pull/21722

Commit migrated from https://github.com/dotnet/corefx/commit/4b6cc4f99e3af21525da967cfbba219b6620a51e

5 years agoDelete one-off AppDomain setter for uapaot first chance exception handler (dotnet...
Jan Kotas [Wed, 2 Jan 2019 13:31:06 +0000 (03:31 -1000)]
Delete one-off AppDomain setter for uapaot first chance exception handler (dotnet/corefx#34304)

This should not be one-off. It should be either nowhere or everywhere.

Commit migrated from https://github.com/dotnet/corefx/commit/344aca842de08a897a560e3465f2885480a1e318

5 years agosplit redirect tests into separate file
Geoff Kizer [Tue, 1 Jan 2019 23:53:35 +0000 (15:53 -0800)]
split redirect tests into separate file

Commit migrated from https://github.com/dotnet/corefx/commit/33aa830e7975d6fdf50143348cb78f2924d673de

5 years agoMerge pull request dotnet/corefx#34298 from geoffkizer/flakytest-SchSendAuxRecordHttpTest
Geoff Kizer [Tue, 1 Jan 2019 20:58:34 +0000 (12:58 -0800)]
Merge pull request dotnet/corefx#34298 from geoffkizer/flakytest-SchSendAuxRecordHttpTest

disable flaky test SchSendAuxRecordHttpTest

Commit migrated from https://github.com/dotnet/corefx/commit/fed12d49fd08018d2b31300f0d591071e0da7c12

5 years agodisable flaky test SchSendAuxRecordHttpTest
Geoff Kizer [Mon, 31 Dec 2018 23:30:36 +0000 (15:30 -0800)]
disable flaky test SchSendAuxRecordHttpTest

Commit migrated from https://github.com/dotnet/corefx/commit/d08226feeb0af0ff41c8d41b36ba8f6bb97c1785

5 years agoRemove Interop.ReadDir.cs (dotnet/corefx#34274)
Egor Bogatov [Mon, 31 Dec 2018 02:05:27 +0000 (05:05 +0300)]
Remove Interop.ReadDir.cs (dotnet/corefx#34274)

* Remove Interop.ReadDir.cs

* pass bufferPtr to FindNextEntry

* Update src/System.IO.FileSystem/src/System/IO/Enumeration/FileSystemEnumerator.Unix.cs

Co-Authored-By: EgorBo <egorbo@gmail.com>
Commit migrated from https://github.com/dotnet/corefx/commit/91589339e6fd3da57d8e6c15937253037e727a04

5 years agoImprove dogfooding guide (dotnet/corefx#34284)
Marco Rossignoli [Sun, 30 Dec 2018 16:59:39 +0000 (17:59 +0100)]
Improve dogfooding guide (dotnet/corefx#34284)

Commit migrated from https://github.com/dotnet/corefx/commit/6c94c21afe03d2b9ffbbd80df26ad49587559a9b

5 years agofix passing credentials null
Afsaneh Rafighi [Fri, 28 Dec 2018 18:12:13 +0000 (10:12 -0800)]
fix passing credentials null

Commit migrated from https://github.com/dotnet/corefx/commit/f168162c018b3e215e008d0bee94be85c76a8fe7

5 years agoUse common copy of System.Numerics.Hashing.HashHelpers
Jan Kotas [Thu, 27 Dec 2018 07:36:20 +0000 (23:36 -0800)]
Use common copy of System.Numerics.Hashing.HashHelpers

Commit migrated from https://github.com/dotnet/corefx/commit/4e3797e2ff40575b08f08849970f100b2ab5ced1

5 years agoUpdate dogfooding guide (dotnet/corefx#34246)
Marco Rossignoli [Thu, 27 Dec 2018 13:45:30 +0000 (14:45 +0100)]
Update dogfooding guide (dotnet/corefx#34246)

Commit migrated from https://github.com/dotnet/corefx/commit/e001e65c6ceef7fc06fd569c871f604014de76e7

5 years agoUpdate pinvoke guidelines (dotnet/corefx#34249)
Dan Moseley [Thu, 27 Dec 2018 03:53:15 +0000 (19:53 -0800)]
Update pinvoke guidelines (dotnet/corefx#34249)

* Update pinvoke guidelines

Added some clarification on the width of types, on padding, and the `fixed` keyword. All these were things I had to figure out recently, so it would be useful to document for others.

* Update interop-pinvokes.md

* Update interop-pinvokes.md

* Update interop-pinvokes.md

* Update interop-pinvokes.md

* Update interop-pinvokes.md

* Update interop-pinvokes.md

Commit migrated from https://github.com/dotnet/corefx/commit/103ef55a43b93815277a0b6771e19675730e8ab7

5 years agoUpdate CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27226-01, preview...
dotnet-maestro-bot [Wed, 26 Dec 2018 08:04:09 +0000 (00:04 -0800)]
Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27226-01, preview.18625.2, beta-27226-00, beta-27226-00, respectively (dotnet/corefx#34241)

Commit migrated from https://github.com/dotnet/corefx/commit/04d5f81efc341cf7f682f5cd05dffe71d7813148

5 years agoUpdate CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27225-02, preview...
dotnet-maestro-bot [Tue, 25 Dec 2018 18:40:57 +0000 (10:40 -0800)]
Update CoreClr, CoreFx, ProjectNTfs, ProjectNTfsTestILC to preview-27225-02, preview.18625.1, beta-27225-00, beta-27225-00, respectively (dotnet/corefx#34235)

Commit migrated from https://github.com/dotnet/corefx/commit/74b4172bf0c4ae9842d67fb066760eec2e435164

5 years agoStop building System.Threading.Tasks.Extensions package
Jan Kotas [Sun, 23 Dec 2018 00:41:06 +0000 (16:41 -0800)]
Stop building System.Threading.Tasks.Extensions package

Fixes build breaks after shared CoreLib updates

Commit migrated from https://github.com/dotnet/corefx/commit/f83cc7ec2e4aadf07c0f943a50906a144ad2e544

5 years agoRemoved global suppression of CS1573 and CS1591 warnings (dotnet/corefx#34232)
Stanislav Ushakov [Mon, 24 Dec 2018 17:17:29 +0000 (20:17 +0300)]
Removed global suppression of CS1573 and CS1591 warnings (dotnet/corefx#34232)

* Removed global suppression of CS1573 and CS1591, moved suppression to the project level.

* Fixes for netfx build, added 2 projects

Commit migrated from https://github.com/dotnet/corefx/commit/adb4d48fe65d48b6dd1c2ff15c8a60e5f96bf266