Stephen Toub [Thu, 2 May 2019 04:15:28 +0000 (00:15 -0400)]
Enable HTTP/2 in SocketsHttpHandler via HttpRequestMessage.Version (dotnet/corefx#37234)
We now respect the version: if it's 1.1, we use 1.1, and if it's 2.0, we try to use HTTP/2. At the same time, the default for HttpRequestMessage.Version goes back to 1.1, so to use HTTP/2, you opt-in by setting the version explicitly to 2.0.
Commit migrated from https://github.com/dotnet/corefx/commit/
d69d441dfb0710c2a34155c7c4745db357b14c96
Dan Moseley [Thu, 2 May 2019 04:14:26 +0000 (21:14 -0700)]
Typos etc (dotnet/corefx#37349)
Commit migrated from https://github.com/dotnet/corefx/commit/
b57618e6d1caa03c809e343885f06a5b0791b2c2
Stephen Toub [Thu, 2 May 2019 04:12:02 +0000 (00:12 -0400)]
Disable GetAsync_UnicodeHostName_SuccessStatusCodeInResponse test
Commit migrated from https://github.com/dotnet/corefx/commit/
419a1fe5da1698ea3a380166ab70b11ab37dbde0
Andrew Hoefling [Thu, 2 May 2019 03:57:56 +0000 (23:57 -0400)]
Added Range Manipulation APIs to Collection<T> and ObservableCollection<T> (dotnet/corefx#35772)
* Added Collection<T> AddRange and InsertRange and added new XUnit tests to cover new APIs
Added missing APIs from Collection<T>; Added new unit tests for RemoveRange, ReplaceRange, InsertItemsRange and RemoveItemsRange
Updated AddRange in Collection<T> to add items to the end of the collection
Added CollectionChanged tests for ObservableCollection<T> for InsertRange, AddRange, RemoveRange and ReplaceRange
Removing API changes as these will be mirrored from CoreCLR
Updated array assertions to use Span<T> to simplify logic
Sorted order of new API methods
Simplified CollectionTests Assertion to use Span<T> instead of calling out each item in the array
Added missing API ReplaceItemsRange and updated unit tests for check for overflow errors on RemoveItems
Added overrides for ObservableCollection<T> ItemsRange API to only fire CollectionChanged once per API call. Before this was firing for each item in the collection which is not the desired result. Updated unit tests to verify this logic
Updated RemoveItemsRange to prevent int.MaxValue overflow errors
Added int.MaxValue overflow tests for Collection<T> and ObservableCollection<T> when invoking RemoveItemsRange API
Added additional RemoveRange unit tests to cover when Count is Less than 0 or when Count is 0
Updated RemoveRange overflow tests to check for ArgumentException for new business rules
Updated ObservableCollection overflow test to assert ArgumentException
Added try-finally block to ObservableCollection<T> to certify that _skipCollectionChanged is always set to false after a collection manipulation in case an exception is thrown in a subclass. Added new test class to test the new rules on the example of a NonNullObservableCollection<T>
CollectionChanged events do not fire on RemoveRange if the count == 0
Updated ObservableCollection<T> to only throw the 3 required events when ReplaceItemsRange is invoked. Updated OnChangedEvent methods to check for IList and cast as necessary. Added additional exception handling to reset _skipRaisingEvents bool. Added unit tests to verify event and event parameters are being passed correctly.
Added Collection<T> AddRange and InsertRange and added new XUnit tests to cover new APIs
Simplified CollectionTests Assertion to use Span<T> instead of calling out each item in the array
Added additional RemoveRange unit tests to cover when Count is Less than 0 or when Count is 0
Updated ObservableCollection<T> to only throw the 3 required events when ReplaceItemsRange is invoked. Updated OnChangedEvent methods to check for IList and cast as necessary. Added additional exception handling to reset _skipRaisingEvents bool. Added unit tests to verify event and event parameters are being passed correctly.
Updated ReplaceRange event to pass in the OldItems and NewItems to match the event docs
Simplified CollectionChanged 'NewItems for InsertItemsRange
Updated removedItems to use an array instead of a List<T>
Added new OnCollectionChanged overloads to reduce need for additional if checks.
Removed stale code
Optimized ReplaceItemsRange by simplifying the itemsToReplace which is no an array instead of a List<T>
Removed (IList) cast in ReplaceItemsRange when raising CollectionChanged
Removed temp array in RemoveRange which decreases memory allocation needed
* Removed redudent AsSpan parameter in test code
* Removed stale code in test code
* Removed redundent Assert.NotNull calls in several tests
* Added additional check in InsertRange to verify the input collection.Count is greater than 0 before raising the events
* Removed stale code from the `NonNullObservableCollection<T>` test harness
* Removed unnecessary whitespace
* Renamed new API tests to include the .netcoreapp extension; Updated .Tests.csproj file to only run them when the project is built under .NET core as net standard is the default
* Renamed CollectionTests -> CollectionTests.netcoreapp.cs and only run the test if it is a netcoreapp as the new APIs aren't in netstandard yet
* Added UAP and UAPAOT build configurations for System.ObjectModel tests
* Updated ObservableCollection/Collection tests that use new APIs to be in a partial class with the .netcoreapp.cs extension and existings tests to be in the .cs file.
* Added CollectionTestBase as parent class for CollectionTests for the use case where the other tests are ignored in netstandard builds
* Adding using statements back in which were failing the build
* Moving private classes from the netcoreapp tests to the regular CollectionTests as they were not available in the netstandard CI test run
* Added missing using statement for colleciton tests
* Added if-block that certifies we have replaced items before raising the Replace Event on ReplaceItemsRange
* Removed whitespace in System.Runtime.Tests.csproj
* Added negative test case for ReplaceRange when no items are replaced
* Fixed issue with failing test
Commit migrated from https://github.com/dotnet/corefx/commit/
b705522753f09d501762cca6c45d6bd031c112d7
Stephen Toub [Thu, 2 May 2019 01:49:37 +0000 (21:49 -0400)]
Make ProcessTests.HandleCountChanges more reliable (dotnet/corefx#37330)
* Make ProcessTests.HandleCountChanges more reliable
* Address PR feedback
* Update CoreFx.Private.TestUtilities.csproj
Commit migrated from https://github.com/dotnet/corefx/commit/
d398edffd620fd3e4136963faedfea3a9a8e66b0
Ahson Khan [Thu, 2 May 2019 01:46:28 +0000 (18:46 -0700)]
Add JsonEncodedText with Utf8JsonWriter overloads that accept it (dotnet/corefx#37323)
* Initial impl of JsonEncodedText with tests.
* Auto-generate the reference assembly.
* Update tests and ref assembly to include dummy field.
* Add JsonEncodedText overloads to Utf8JsonWriter with tests.
* Auto-gen the ref
* Address PR feedback.
* Fix typo - dispose the Utf8JsonWriter within serializer.
* Add XML comments to the new APIs and types.
* Alpha order the csproj.
Commit migrated from https://github.com/dotnet/corefx/commit/
49262a8fb76b5763a66b0a781239bf16f610cefe
Charles Stoner [Thu, 2 May 2019 00:21:05 +0000 (17:21 -0700)]
Run Microsoft.VisualBasic.Core.Tests sequentially (dotnet/corefx#37345)
Commit migrated from https://github.com/dotnet/corefx/commit/
d0759da699ff6faeb767b1531158dcab896098dc
Viktor Hofer [Wed, 1 May 2019 22:36:47 +0000 (00:36 +0200)]
Update pullrequest-builds.md
Commit migrated from https://github.com/dotnet/corefx/commit/
648d0724c2b9224cace4b1e179fc20904fe27aa4
Santiago Fernandez Madero [Wed, 1 May 2019 22:27:50 +0000 (15:27 -0700)]
Fix condition for send to helix step in public builds (dotnet/corefx#37344)
Commit migrated from https://github.com/dotnet/corefx/commit/
c8f623755c53e5100a87a421bd8bb26e8ad16dd5
David Shulman [Wed, 1 May 2019 22:17:21 +0000 (15:17 -0700)]
Implement HttpClient.DefaultProxy property (dotnet/corefx#37333)
This PR implements the new static HttpClient.DefaultProxy property which was approved
during API review.
Modify the SystemProxyInfo.ConstructSystemProxy method to a Singleton.
Modify SocketsHttpHandler to use the HttpClient.DefaultProxy property.
Rename the HttpSystemProxy class to HttpWindowsProxy.
Add some HttpClient tests for the new property.
Closes dotnet/corefx#36553
Commit migrated from https://github.com/dotnet/corefx/commit/
c661db6ce2da91033671c0000afc185de1ad3fe9
Viktor Hofer [Wed, 1 May 2019 21:48:48 +0000 (23:48 +0200)]
Publish test artifacts to AzDO (dotnet/corefx#37296)
* Publish test artifacts to AzDO
* Disable two flaky UAP tests
* Remove leftover buildconfiguration for netfx
* Disable flaky printer test
* Disable flaky PipeWriter test
Commit migrated from https://github.com/dotnet/corefx/commit/
75a54c95e2d31370bf8b5024a5b68b3e83cefb2e
Santiago Fernandez Madero [Wed, 1 May 2019 21:16:11 +0000 (14:16 -0700)]
Remove instances of myget in the docs and update to blob feed (dotnet/corefx#37334)
Commit migrated from https://github.com/dotnet/corefx/commit/
0b1daee821fbb20df5daf002fd3b1d070d1380cf
Stephen Toub [Wed, 1 May 2019 21:01:07 +0000 (17:01 -0400)]
Disable AutomaticOrManual_DoesntFailRegardlessOfWhetherClientCertsAreAvailable test (dotnet/corefx#37339)
Commit migrated from https://github.com/dotnet/corefx/commit/
07e6ac3476467af0b9825259de1cfa9487f0d9fa
Stephen Toub [Wed, 1 May 2019 20:53:28 +0000 (16:53 -0400)]
Allow Http2Connection header-related processing buffers to grow (dotnet/corefx#37337)
They're currently hard-coded to have a max size. We need to allow them to grow to deal with arbitrarily large headers. (Separately we'll want to enforce the max header size limit.)
Commit migrated from https://github.com/dotnet/corefx/commit/
9bb0c8fd8865fc282ea44b67b0738ffbfef96410
Jeremy Barton [Wed, 1 May 2019 20:03:19 +0000 (13:03 -0700)]
Fix NullReferenceException when a trusted cert chain fails usage (dotnet/corefx#37318)
* Fix NullReferenceException when a trusted cert chain fails usage
A previous change moved overallStatus to be created on demand, but if it made
it out to ProcessPolicy before finding the first error it didn't create it first.
While adding a test for that it was also discovered that the Windows and
Linux chains are inconsistent in where this particular error gets reported.
* Fix macOS setting of the NotValidForUsage flag
Also change the test to ignore revocation, to avoid macOS failing when it
doesn't want to check a CRL.
* Reuse one list for all elementStatus expansion
Commit migrated from https://github.com/dotnet/corefx/commit/
81b393ccc67dd8126996ab7f652f2a7e05726516
dotnet-maestro-bot [Wed, 1 May 2019 19:57:17 +0000 (12:57 -0700)]
Update ProjectNTfs, ProjectNTfsTestILC to beta-27701-01, beta-27701-01, respectively (dotnet/corefx#36873)
Commit migrated from https://github.com/dotnet/corefx/commit/
67a929064887d09adaf7f07b0ae66316cabfa562
Santiago Fernandez Madero [Wed, 1 May 2019 19:06:41 +0000 (12:06 -0700)]
Send to helix only when previous steps succeeded (dotnet/corefx#37332)
Commit migrated from https://github.com/dotnet/corefx/commit/
5ed8c52f6a6d78267fe5857f7a67780ea02cc7a8
Stephen Toub [Wed, 1 May 2019 16:45:35 +0000 (12:45 -0400)]
Fix two more System.Net async instead of sync calls (dotnet/corefx#37329)
These were written as sync-over-async before the sync APIs were available. Now that the sync APIs are available, use them.
Commit migrated from https://github.com/dotnet/corefx/commit/
5cb6b8b340aafc3d7c6afe212fab103ef697fa02
Stephen Toub [Wed, 1 May 2019 15:57:35 +0000 (11:57 -0400)]
Add ManualResetValueTaskSourceCore / AsyncIterateMethodBuilder to Microsoft.Bcl.AsyncInterfaces (dotnet/corefx#37320)
* Add ManualResetValueTaskSourceCore / AsyncIterateMethodBuilder to Microsoft.Bcl.AsyncInterfaces
These two types needed modifications to target .NET Standard 2.0 and are the necessary pieces to enable the compiler to compile async iterators.
- Copied ManualResetValueTaskSourceCore.cs from coreclr and tweaked it. I opted to do this rather than ifdef because the changes are not localized and I didn't want to significantly perturb the primary implementation.
- Added a few ifdefs to the shared AsyncIteratorMethodBuilder. It already had ifdefs, so I just added to it.
- Added a test project, and included the existing ManualResetValueTaskSourceCore tests. I had to disable two of the tests because of some of the optimization differences.
- Augmented those tests to validate that the compiler is able to successfully generate iterators and await foreach them.
* Address PR feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
07b6760a1a84251a50f744e585e4da5f71a25e68
dudu [Wed, 1 May 2019 15:10:57 +0000 (23:10 +0800)]
Use Dns.GetHostAddresses in Socket.Connect (dotnet/corefx#37324)
Replace Dns.GetHostAddressesAsync with Dns.GetHostAddresses in Socket.Connect
Commit migrated from https://github.com/dotnet/corefx/commit/
787f87fc781ca1f42d69b27576db0c9dce913700
Santiago Fernandez Madero [Wed, 1 May 2019 11:05:24 +0000 (04:05 -0700)]
Run tests only on public builds and scheduled or manual official builds (dotnet/corefx#37316)
Commit migrated from https://github.com/dotnet/corefx/commit/
1f9db60c79e7c4f04fa346f751024ec8684ce64c
David Shulman [Wed, 1 May 2019 04:14:02 +0000 (21:14 -0700)]
Internal Http SystemProxyInfo object should never be null (dotnet/corefx#37306)
In order to provide a consistent experience with the HttpClient IWebProxy objects,
the returned internal proxy object which represent the system/platform proxy settings
should never be null. If the platform's settings indicate that no proxy is being used,
then return an instance of the internal HttpNoProxy object.
Note that even if the platform settings indicate that a proxy could be used, any
particular Http request might still not go thru a proxy. The final determination of
what proxy is being used for a request is still governed by the return of the
IWebProxy.IsBypassed and IWebProxy.GetProxy methods.
Contributes to dotnet/corefx#36553
Commit migrated from https://github.com/dotnet/corefx/commit/
830bf7fc0346d9453d85ad4ec726c92ac3e72998
Tomas Weinfurt [Wed, 1 May 2019 03:31:00 +0000 (20:31 -0700)]
update tests using "localhost" to be more liberal on verification of response address. (dotnet/corefx#37284)
* update tests using "localhost"
* feedback from review
Commit migrated from https://github.com/dotnet/corefx/commit/
d34db8ed8e2cb8dd9bcf2045b2526165661d501a
Jose Perez Rodriguez [Wed, 1 May 2019 02:24:33 +0000 (19:24 -0700)]
Adding Microsoft.Bcl.AsyncInterfaces for .NET Standard 2.0 (dotnet/corefx#37189)
* Adding Microsoft.Compatibility.AsyncInterfaces package
* Addressing PR Feedback
* Fix small typo
* Remove unnecesary configurations from the package
* Rename to Microsoft.Bcl.AsyncInterfaces
* Addressing PR Feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
bfcbf22e72bd5f814af92c0980993a8b4e9c7232
Tomas Weinfurt [Wed, 1 May 2019 02:05:55 +0000 (19:05 -0700)]
handle EPROTOTYPE on OSX (dotnet/corefx#37208)
Commit migrated from https://github.com/dotnet/corefx/commit/
dda3289ce64a68613057758f53c20cc4768548de
Stephen Toub [Wed, 1 May 2019 02:04:13 +0000 (22:04 -0400)]
Fix order of "static public" in test file
Commit migrated from https://github.com/dotnet/corefx/commit/
ebba368b0f5e37cf12a22774b90cb54600ce6760
Tomas Weinfurt [Wed, 1 May 2019 02:03:23 +0000 (19:03 -0700)]
disable ParallelQueryCombinationTests on ARM systems with high core count (dotnet/corefx#37319)
Commit migrated from https://github.com/dotnet/corefx/commit/
0409c03ac353f93e7598d0ebd19017f43b944efb
Levi Broderick [Wed, 1 May 2019 01:51:57 +0000 (18:51 -0700)]
Add more UTF-16 validation tests (dotnet/corefx#37252)
Commit migrated from https://github.com/dotnet/corefx/commit/
a8dacfb2d4fd38aafce49adc8de30f31e08bd598
Tanner Gooding [Wed, 1 May 2019 00:53:08 +0000 (17:53 -0700)]
Removing the System.Numerics.Vectors pkgproj (dotnet/corefx#37301)
Commit migrated from https://github.com/dotnet/corefx/commit/
9e4e45d6af3facb06726e659e612a943c11f4d26
Levi Broderick [Wed, 1 May 2019 00:02:33 +0000 (17:02 -0700)]
Additional unit test cases for UTF-8 validation (dotnet/corefx#37162)
Commit migrated from https://github.com/dotnet/corefx/commit/
97fb23198aadfb48f27ac39e96358d4990b1700d
Steve MacLean [Tue, 30 Apr 2019 22:45:21 +0000 (18:45 -0400)]
Enable test for dotnet/coreclrdotnet/corefx#24191 (dotnet/corefx#37311)
Enable SatelliteAssembly tests relying on dotnet/coreclrdotnet/corefx#24191
Commit migrated from https://github.com/dotnet/corefx/commit/
b1448c5e4e744e1b24852fbd972b5208cb69157e
Ahson Khan [Tue, 30 Apr 2019 22:09:36 +0000 (15:09 -0700)]
Add TokenStartIndex property to Utf8JsonReader and fix bug in ConsumeNumber (dotnet/corefx#37167)
* Add TokenStartIndex property to Utf8JsonReader with basic tests.
* Add more token start index tests and fix bug in ConsumeNumber which was
throwing too aggressively.
* Update ref to match normalized alpha ordering.
* Use TokenStartIndex in more places, i.e. in JsonDocument.TryParseValue
* Address PR feedback.
* Restructure condition with string first to avoid duplication.
Commit migrated from https://github.com/dotnet/corefx/commit/
7d2af717439d1b60969c712376b842a12c5769cc
dotnet-maestro[bot] [Tue, 30 Apr 2019 20:40:12 +0000 (16:40 -0400)]
[master] Update dependencies from dotnet/coreclr (dotnet/corefx#37298)
* Update dependencies from https://github.com/dotnet/coreclr build
20190429.75
- Microsoft.NET.Sdk.IL - 3.0.0-preview6-27629-75
- Microsoft.NETCore.ILAsm - 3.0.0-preview6-27629-75
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview6-27629-75
* Disable NullEncodingThrows test on all but netfx
* add precision
precision tests added and precision increased in current tests
fixing max value test
* Fixing tests for netfx
Commit migrated from https://github.com/dotnet/corefx/commit/
33f3985174a8f7727cfeaa507963c0f76b8a0908
Santiago Fernandez Madero [Tue, 30 Apr 2019 20:32:10 +0000 (13:32 -0700)]
Move to new BYOC pools (dotnet/corefx#37303)
Commit migrated from https://github.com/dotnet/corefx/commit/
4a4b2cfd556feaa1c112afc604217d5c628385a2
Matt Galbraith [Tue, 30 Apr 2019 19:57:09 +0000 (12:57 -0700)]
Merge pull request dotnet/corefx#37307 from dotnet/update-1904-image
Update Docker image for Ubuntu 19.04
Commit migrated from https://github.com/dotnet/corefx/commit/
56115730ea260dd27cf74818dff858cb8424e61a
Matt Galbraith [Tue, 30 Apr 2019 19:55:51 +0000 (12:55 -0700)]
Update Docker image for Ubuntu 19.04
Commit migrated from https://github.com/dotnet/corefx/commit/
ee67e75c1ae98ef73a32aa0a4f1b9c1d9ef392d8
Jeremy Barton [Tue, 30 Apr 2019 19:25:58 +0000 (12:25 -0700)]
Fix bad usage of ArrayPool in TdsParserStateObject (dotnet/corefx#37270)
If TdsParserStateObject.TryReadString or
TdsParserStateObject.TryReadStringWithEncoding hit the growth case they
would rent an array, save it into a field, use the array, return the array to the pool,
but keep it assigned to the field and continue using it.
Since other writes to _bTmp use fresh arrays in an instance-cached-growth
pattern, this change restores these two methods to that same approach, rather
than renting to a local buffer and not renting into a field.
Commit migrated from https://github.com/dotnet/corefx/commit/
e89d17a0a97d5de707f24587118acc8072667b78
Stephen Toub [Tue, 30 Apr 2019 18:58:25 +0000 (14:58 -0400)]
Harden several SocketsHttpHandler streams against unexpected Dispose (dotnet/corefx#37299)
A few tweaks:
- We hand out the ChunkedEncodingWriteStream and ContentLengthWriteStream to an HttpContent.SerializeToStreamAsync. If that user code disposes of the Stream, then we end up null ref'ing when we try to finish the processing. We should instead throw a more descriptive error about the misuse.
- Make the non-pooled response streams slightly more robust against concurrent disposal (which is not a supported use, but it happens).
Commit migrated from https://github.com/dotnet/corefx/commit/
422565673deb849b42f656f4a68bec791ee4bed9
Stephen Toub [Tue, 30 Apr 2019 00:52:59 +0000 (20:52 -0400)]
Add a test for Stopwatch.Elapsed to ensure it's within reason (dotnet/corefx#37279)
If this experiences flakiness in CI, we can tweak it, replace it with something better, etc.
Commit migrated from https://github.com/dotnet/corefx/commit/
c28dbd19fda676a57fb3edf25aaa42196ed36f05
Steve MacLean [Tue, 30 Apr 2019 00:43:06 +0000 (20:43 -0400)]
Remove dotnet/sdkdotnet/corefx#3185 (dotnet/corefx#37289)
Issue closed
Commit migrated from https://github.com/dotnet/corefx/commit/
a25531fc1f49e5c2d5453c62b0df730000f0896e
Matt Galbraith [Tue, 30 Apr 2019 00:34:55 +0000 (17:34 -0700)]
Merge pull request dotnet/corefx#37287 from dotnet/add-ubuntu-1904
Add Ubuntu 19.04 to official runs
Commit migrated from https://github.com/dotnet/corefx/commit/
ae8426b9da0151a616a73767f64468e3f71bd0cc
Steve MacLean [Tue, 30 Apr 2019 00:33:31 +0000 (20:33 -0400)]
ALC SatelliteAssemblies tests (dotnet/corefx#37248)
* Add AssemblyLoadCcontext SatelliteAssemblies tests
Commit migrated from https://github.com/dotnet/corefx/commit/
9c05364f2eddbb7ef741abb975728b050980097a
Matt Galbraith [Tue, 30 Apr 2019 00:27:02 +0000 (17:27 -0700)]
Add Ubuntu 19.04 to official runs
Add runs using Ubuntu.1904.Amd64 (docker image) ; this is an AMD image based off requirements used in ARM64 version.
Commit migrated from https://github.com/dotnet/corefx/commit/
13c18aed49389d7dd00a1da7fc9a2e714943c9d5
Stephen Toub [Mon, 29 Apr 2019 22:28:34 +0000 (18:28 -0400)]
Disable failing Process name test (dotnet/corefx#37283)
https://github.com/dotnet/corefx/issues/37198
Regression caused by https://github.com/dotnet/corefx/pull/37144
Commit migrated from https://github.com/dotnet/corefx/commit/
a26fd9bb1b17510d51a9b5a2ce7aadc1a5b631ee
Anirudh Agnihotry [Mon, 29 Apr 2019 22:27:05 +0000 (15:27 -0700)]
Making BaseNumberConverter Internal (dotnet/corefx#37278)
* type converter ctor made internal
* diasabling apicompat for the change
* Fixing uap app compat
Commit migrated from https://github.com/dotnet/corefx/commit/
fe807da325e532aaabec338c3ecd78b1a7e5efe8
Stephen Toub [Mon, 29 Apr 2019 22:24:48 +0000 (18:24 -0400)]
Plumb cancellation through SslStream.AuthenticateAsXxAsync (dotnet/corefx#37259)
We accept a CancellationToken into several of the overloads, but it's then dropped and not actually used. This fixes that to ensure it's passed through to the underlying Read/WriteAsync operations.
Commit migrated from https://github.com/dotnet/corefx/commit/
ff1db9b09082dfd0dcdeaf8ffa291a825916a7f6
Charles Stoner [Mon, 29 Apr 2019 21:48:19 +0000 (14:48 -0700)]
Port Microsoft.VisualBasic.MyServices.FileSystemProxy and move FileIOTests to C# (dotnet/corefx#37277)
Commit migrated from https://github.com/dotnet/corefx/commit/
8c167e3c0fd7958acac17f88f241865dbff3eed9
David Shulman [Mon, 29 Apr 2019 19:38:00 +0000 (12:38 -0700)]
Cleanup some WebSocket tests (dotnet/corefx#37271)
Skip some tests on .NET Framework due to bugs in .NET Framework.
Modify the TestCancellation helper method for the WebSocket client tests to not check for string matching in exception messages. This makes the test too brittle. We're already checking for other important fields in the WebSocket object.
Re-enable some UAP tests since the fixes are in master branch.
Closes dotnet/corefx#13302
Closes dotnet/corefx#22635
Closes dotnet/corefx#23204
Closes dotnet/corefx#28777
Closes dotnet/corefx#33401
Commit migrated from https://github.com/dotnet/corefx/commit/
98c8597706bee4a7e21648deb62c72ce198076f6
Stephen Toub [Mon, 29 Apr 2019 17:51:29 +0000 (13:51 -0400)]
Clean up HTTP/2 protocol exception handling (dotnet/corefx#37223)
* Clean up HTTP/2 protocol exception handling
- Propagate the GOAWAY and RST_STREAM error codes to the calling code via an exception.
- Propagate to the Http2Stream exceptions incurred in the Http2Connection and that result in an Abort.
- Don't Dispose of the Http2Stream before we try to Cancel it.
- Make Http2ProtocolException serializable, as we generally do that for all of our exception types.
- Add tests that verify sufficient HTTP/2 protocol details are in the exception messages.
- Clean up the error message for the exception.
- Separate the error code and exception into their own files.
- Leave Http2ProtocolException internal for now; we can expose it publicly when we design the all-up public error model for HttpClient.
* Address PR feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
7237da089c09531c36a2110a3bdd9ccaf7c05d77
Stephen Toub [Mon, 29 Apr 2019 17:02:51 +0000 (13:02 -0400)]
Improve a ClientWebSocket connection failure error message (dotnet/corefx#37267)
Commit migrated from https://github.com/dotnet/corefx/commit/
d6e7cbf4f3226f644c114443e617ba53fe686be7
Tomas Weinfurt [Mon, 29 Apr 2019 16:41:33 +0000 (09:41 -0700)]
fix noencryption tests on platforms with tls1.3 (dotnet/corefx#37213)
* fix noencryption tests on platforms with tls1.3
* feedback from review
* fix platform detection
Commit migrated from https://github.com/dotnet/corefx/commit/
5a36da2d2cc19718dfffc5f05ca42541f4d8d8c6
Michal Strehovský [Mon, 29 Apr 2019 13:06:36 +0000 (15:06 +0200)]
Remove `Partial` from `EnablePartialNgenOptimization` (dotnet/corefx#36962)
Ngen optimizations are controlled with two properties - one is EnableNgen, the other is ApplyNgen. We were already using the ApplyNgen property with value of `full` (as of dotnet/corefx#36450), so this was already doing full Ngen, but we still used EnablePartialNgen to control the EnableNgen property. It's a roundabout way to EnableNgen, but does the same thing. This pull request removes the indirection.
Commit migrated from https://github.com/dotnet/corefx/commit/
7066a0cac2cadd21ca144cc78d1b1fab9b1f9cd7
Ben Adams [Mon, 29 Apr 2019 09:18:30 +0000 (10:18 +0100)]
Don't allocate two strings in Activity.GenerateRootId (dotnet/corefx#37165)
* Don't allocate two strings in Activity.GenerateRootId
* Packaging
* packaging
* Feedback
* feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
173a2a165316af9a4e211ceab8c8d9692de8a528
David Shulman [Sun, 28 Apr 2019 00:06:35 +0000 (17:06 -0700)]
Add proxy environment variables support for Windows (dotnet/corefx#37238)
Changed the Windows version of SocketsHttpHandler so that it will honor the same environment
variables similar to the Linux and OSX versions. If the environment variables are not set
then it reverts back to the Windows WinInet/IE settings behavior.
I added several kinds of unit and end-to-end tests to verify the SystemProxyInfo class is
making the correct choice for all the different platforms regarding whether the
HttpEnvironmentProxy or platform proxy (HttpSystemProxy for Windows and MacProxy for OSX)
is used.
Fixes dotnet/corefx#37187
Commit migrated from https://github.com/dotnet/corefx/commit/
4f27d0f84c17850ef02ea7b330908fddcdf73c86
Stephen Toub [Sat, 27 Apr 2019 23:22:33 +0000 (19:22 -0400)]
Give SocketsHttpHandler more descriptive error messages (dotnet/corefx#37251)
Currently lots of parsing failures just result in an exception stating "The server returned an invalid or unrecognized response." We can instead be more descriptive about what the problem is in most cases.
Commit migrated from https://github.com/dotnet/corefx/commit/
8e551d4dc7464a465b00ac1bf9a632ea9c3bb5a1
Stephen Toub [Sat, 27 Apr 2019 21:11:53 +0000 (17:11 -0400)]
Disable sporadically failing HttpClientHandler test (dotnet/corefx#37253)
Commit migrated from https://github.com/dotnet/corefx/commit/
610fa286999c78b841e17ea0c301c0986426635d
Stephen Toub [Sat, 27 Apr 2019 20:47:21 +0000 (16:47 -0400)]
Tweak a comment in HttpHandlerDefaults.cs
Fixes https://github.com/dotnet/corefx/issues/34966
Commit migrated from https://github.com/dotnet/corefx/commit/
c0c370e0576574d8985970200c00ca83ae366d2e
Jeremy Barton [Sat, 27 Apr 2019 18:48:52 +0000 (11:48 -0700)]
Ensure that invalid AIA, CDP, and OCSP extensions don't throw. (dotnet/corefx#37237)
Commit migrated from https://github.com/dotnet/corefx/commit/
a3ee315cd5e4f4d3ce8fb60a24aa8bd0c9c9ae82
Jeremy Barton [Sat, 27 Apr 2019 18:47:35 +0000 (11:47 -0700)]
Add Ubuntu 19.04 RID (dotnet/corefx#37233)
Commit migrated from https://github.com/dotnet/corefx/commit/
ad4b12cbc4563b346f0de48fda06c41292650611
Tanner Gooding [Sat, 27 Apr 2019 01:05:18 +0000 (18:05 -0700)]
Fixing the logic in SystemNative_GetTimestampResolution to return the correct "ticks per second" (dotnet/corefx#37236)
Commit migrated from https://github.com/dotnet/corefx/commit/
4ff66e551b07802a4021d538633d77d3ee66ec89
Jose Perez Rodriguez [Fri, 26 Apr 2019 23:49:25 +0000 (16:49 -0700)]
Adding System.Text.Json OOB package (dotnet/corefx#37129)
* Adding System.Text.Json OOB package
* Removing SourceRewriter dependency as it won't be used by the repo any longer
* Address PR Feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
61024c30b966ee63c357a491370a2daf94c4c42f
BrennanConroy [Fri, 26 Apr 2019 23:24:42 +0000 (16:24 -0700)]
Don't copy state unnecessarily (dotnet/corefx#37206)
Commit migrated from https://github.com/dotnet/corefx/commit/
e6a090157875122b0aeacd1e05741fdc3c143bf0
madmir [Fri, 26 Apr 2019 23:07:54 +0000 (01:07 +0200)]
Improve Utf8JsonWriter code coverage (dotnet/corefx#36811)
* Added test for expected argument exception when property name or value arguments reach MaxTokenSize
Commit migrated from https://github.com/dotnet/corefx/commit/
b35cd0db472434cc5991f305de4557d51991b4a4
Jim Demis [Fri, 26 Apr 2019 22:33:31 +0000 (01:33 +0300)]
Fixes relative path at configSource on linux (dotnet/corefx#37146)
Commit migrated from https://github.com/dotnet/corefx/commit/
224e16d1e88baf45ce53388fe7fd0f3e6673ee88
Charles Stoner [Fri, 26 Apr 2019 22:14:16 +0000 (15:14 -0700)]
Port Microsoft.VisualBasic.FileSystem (dotnet/corefx#37201)
Commit migrated from https://github.com/dotnet/corefx/commit/
58e336ab4476ce57a3b44d87351299cfe9a6458d
Steve MacLean [Fri, 26 Apr 2019 20:03:22 +0000 (16:03 -0400)]
Reenable tests (dotnet/corefx#37081)
Commit migrated from https://github.com/dotnet/corefx/commit/
111632ce7af9f2ffbf117045ea098bd3f0116ccb
Steve Harter [Fri, 26 Apr 2019 18:59:28 +0000 (11:59 -0700)]
Add serializer support for IDictionary non-primitive types (dotnet/corefx#37186)
Commit migrated from https://github.com/dotnet/corefx/commit/
c5bb6abec986627f90b2e7e648dc4e733cdbf63b
Tomas Weinfurt [Fri, 26 Apr 2019 18:02:06 +0000 (11:02 -0700)]
deal with empty response headers for HTTP2 (dotnet/corefx#37160)
* deal with empty response headers for HTTP2
* fix test for http1.1
* feedback from review
* feedback from review
Commit migrated from https://github.com/dotnet/corefx/commit/
e95b369aa20d551cef59f7bda3aff0ddbd4119c7
Tomas Weinfurt [Fri, 26 Apr 2019 18:01:37 +0000 (11:01 -0700)]
update GatewayAddresses() to return IPv6 address on Unix (dotnet/corefx#37132)
* process IPv6 for GatewayAddresses
* fix GatewayAddresses for OSX and FreeBSD
* feedback from review
* feedback from review
* add updated ipv6_route for tests
* feedback from review
Commit migrated from https://github.com/dotnet/corefx/commit/
a612f42c3310f4c66abc0aafc9d6a6a55b07334a
Tomas Weinfurt [Fri, 26 Apr 2019 18:00:41 +0000 (11:00 -0700)]
deal with dualmode sockets (dotnet/corefx#37194)
Commit migrated from https://github.com/dotnet/corefx/commit/
4f781a4df027bc3cc80f034bf05ff4f93dd193d9
Layomi Akinrinade [Fri, 26 Apr 2019 17:57:36 +0000 (13:57 -0400)]
Fix DateTime(Offset) formatting bugs in Utf8JsonWriter (dotnet/corefx#37159)
* Fix DateTime(Offset) formatting bugs in Utf8JsonWriter
Fixes https://github.com/dotnet/corefx/issues/37147.
- The period token was being omitted for some inputs.
- Some offset tokens were being omitted for some inputs.
* Address review feedback
Commit migrated from https://github.com/dotnet/corefx/commit/
5f4dedeb0db50f7d5224fe29a9c6d27cf03fa26b
David Shulman [Fri, 26 Apr 2019 13:23:55 +0000 (06:23 -0700)]
Allow uppercase HTTP_PROXY and NO_PROXY variables (dotnet/corefx#37200)
This is a redo of PR dotnet/corefx#35887.
Added support for uppercase HTTP_PROXY and NO_PROXY environment variables.
The uppercase versions are being used by Docker and other tools. This now
completes the set of environment variables that are already handling both
lower and upper case variants.
Note: This HttpEnvironmentProxy class is currently only used on Linux and OSX.
It is not used on Windows yet. I do plan to add support for this to Windows
at a later time, see dotnet/corefx#37187.
Added detection of CGI environments in order to suppress using the uppercase
HTTP_PROXY environment variable. See https://httpoxy.org/
Fixed some typos in the CSPROJ of the Http Unit Tests.
Commit migrated from https://github.com/dotnet/corefx/commit/
dfe7593397bf5c598548486c6cb774ebf60e9d69
Eric StJohn [Fri, 26 Apr 2019 05:05:19 +0000 (22:05 -0700)]
Add System.Resources.Extensions (dotnet/corefx#36906)
* Add System.Resources.Binary.Reader|Writer
* Fix ResourceWriter tests
* Test fixes and PR feedback
* More test fixes
* Add packages for System.Resources.Binary.*
* Suppress duplicate types in System.Resources.Binary.*
* Test refactoring and adding RuntimeResourceSet
It turns out me must have our own ResourceSet since the CoreLib resource set doesn't
expose a constructor that takes an IResourceReader.
I've shared the code since it does a bit of non-trivial caching.
* Don't use auto-property initializers for platfrom sensitive test data
For some reason I thought these lazy-initialized the properties but they don't.
As a result we were hitting the platform sensitive code even when we never
called the getter. Switch to an expression instead.
* Only use Drawing converters on Windows
* Fix test failures
* Don't leak System.Private.CoreLib into resources
* Make sure RuntimeResourceSet doesn't call ResourceReader(IResourceReader)
* WIP
* Rename types in System.Resources.Extensions
Leave RuntimeResourceSet internal as it doesn't need to be public.
* Update packages
* Respond to API review feedback
Remove abstraction for ResourceReader/Writer: just reuse the source.
Remove non-essential members.
* Clean up
* Further cleanup
* Further cleanup
* Review feedback
* Ensure we have stable type names in Resources.Extensions
We don't want to use the runtime type identity when doing type checks or writing
types as this may change. Instead, check-in hard-coded strings that match the
type identity.
Add a test case to ensure the resources we generate match what we
test the reader against in the resource manager case (also to track any
change to the binary format).
Commit migrated from https://github.com/dotnet/corefx/commit/
da36ea268c778200dc676d294667eb76146e1a01
Eric StJohn [Thu, 25 Apr 2019 22:09:50 +0000 (15:09 -0700)]
Pick up last build runtime.native.System.IO.Ports during testing (dotnet/corefx#37195)
Commit migrated from https://github.com/dotnet/corefx/commit/
4b82e7e79c9468fc4d0d58ee617be0b7729fa613
Anirudh Agnihotry [Thu, 25 Apr 2019 19:54:10 +0000 (12:54 -0700)]
improving error message for non-windows platform (dotnet/corefx#37193)
Commit migrated from https://github.com/dotnet/corefx/commit/
3fd90668431a51fc1c0ec330db20d1dfde7c147d
David Shulman [Thu, 25 Apr 2019 17:58:44 +0000 (10:58 -0700)]
Fix SocketsHttpHandler system proxy usage logic (dotnet/corefx#37153)
SocketsHttpHandler was not using the proxy bypass list specified in IE settings in cases where
there is a combination of both 'AutoDetect' and 'Manual' settings in the IE settings dialog.
SocketsHttpHandler uses WinHttpHandler's WinInetProxyHelper class as part of the HttpSystemProxy
class. But it was consuming it in an incorrect way. WinInetProxyHelper was originally written to
be used only with the rest of the WinHTTP stack for WinHttpHandler. When WinHTTP GetProxyForUrl() was returning a ProxyBypass string, HttpSystemProxy was ignoring it. It was
assuming that the string for Proxy was correct. But in cases where ProxyBypass is returned, the
Proxy string is only used if the destination uri doesn't match any of the strings in the ProxyBypass
list. That logic would normally be handled automatically by WinHttpHandler. But HttpSystemProxy
was simply discarding the ProxyBypass string returned by WinHTTP GetProxyForUrl().
In order to address this fix, I added new tests for HttpSystemProxy. I utilized the existing mock
layers for registry and WinHTTP interop that are contained in the WinHttpHandler Unit Tests. It might
seem weird to have tests for the internal HttpSystemProxy class located in the WinHttpHandler folder.
But, we already pull in the source code for WinInetProxyHelper from WinHttpHandler into the
SocketsHttpHandler compilation. Using these Unit Tests with the mocking layers allows us to test a
broad range of scenarios (registry settings and network failures) that are normally difficult to test.
I have a plan, though, to refactor the system proxy code and tests as part of implementing dotnet/corefx#36553.
That will result in the system proxy code and tests ending up in a more logical place.
Fixes dotnet/corefx#33866
Commit migrated from https://github.com/dotnet/corefx/commit/
6da9a3b80c2ac56c641fa22157607860f6b9387f
Afsaneh Rafighi [Thu, 25 Apr 2019 16:34:24 +0000 (09:34 -0700)]
Merge pull request dotnet/corefx#36678 from Wraith2/sqlfeat-udtbytes
SqlClient Allow specifying a UDT SqlParameter value as bytes
Commit migrated from https://github.com/dotnet/corefx/commit/
aff33dce8057538524af37ab00e09a21b56e6d3e
Jim Demis [Thu, 25 Apr 2019 15:40:08 +0000 (18:40 +0300)]
Fixes compression method override of zero-length files (dotnet/corefx#37079)
* Fixes compression method override of zero-length files
When a zero-length file is stored using compression method, ZipArchive still overrides the method to “not compressed”, and ignore compressed bytes that are still present, rendering the zip file unusable.
Fixes dotnet/corefx#30317
* Ignore uncompressed data for zero-byte files
* Removed unnecesary compressed data and resolved review feedback
* Changed to assert lengths from stream and removed forgotten debug assert
* Moved compressed size reset before WriteLocalFileHeader to keep assert
* Applied test feedback
* Renamed few fields
Commit migrated from https://github.com/dotnet/corefx/commit/
bdd2014f2d1863a296f76b5c90152ae016854afc
Tom Deseyn [Thu, 25 Apr 2019 15:36:23 +0000 (17:36 +0200)]
Linux: determine ProcessName using /proc cmdline to avoid truncated names (dotnet/corefx#37144)
* Linux: determine ProcessName using /proc cmdline to avoid truncated names
* PR feedback
* LongProcessNamesAreSupported test: ensure Process gets killed when Assert throws
Commit migrated from https://github.com/dotnet/corefx/commit/
4214b09864bea0416f17727ffa39a55d950035d1
Viktor Hofer [Thu, 25 Apr 2019 14:48:24 +0000 (16:48 +0200)]
Enable CoreLib coverage (dotnet/corefx#37172)
* Enable CoreLib coverage
Commit migrated from https://github.com/dotnet/corefx/commit/
eb2d732bf8d35186c70c743812e5d17584b6975f
Eric StJohn [Thu, 25 Apr 2019 09:25:08 +0000 (02:25 -0700)]
Use Coreclr transport packages (dotnet/corefx#37163)
* Replace CoreCLR package with transport package
This allows us to remove the manual download step
* Remove IL and NI folders, use IL in debug or when specified
I also simplified some of these targets. NuGet automatically includes all files in native,
so additional inclusion was unnecessary.
* Disable IL CoreLib swap for UAP10.0.16299 and AOT
Commit migrated from https://github.com/dotnet/corefx/commit/
8c7afe67ee2e9bd21a4412265b66f875cfafaede
Devendar Reddy Adulla [Thu, 25 Apr 2019 01:16:26 +0000 (18:16 -0700)]
Embedded resources may not have extension in the name (dotnet/corefx#37048)
* Bitmaps are replaced with Icons and Logical names are changed to not having any extensions.
* Checking for Rawformat before calling MakeTransparent method.
* Adding a test attribute
* Adding test.
Commit migrated from https://github.com/dotnet/corefx/commit/
27d0597c556d7a4040571d09ede9b84bc1cc6b85
Jan Kotas [Thu, 25 Apr 2019 00:06:30 +0000 (17:06 -0700)]
Unify WIN32_FIND_DATA (dotnet/corefx#37158)
Commit migrated from https://github.com/dotnet/corefx/commit/
51922de496a713568b493e791c60e419042d19b5
Steve Harter [Wed, 24 Apr 2019 18:37:04 +0000 (11:37 -0700)]
Fix JSON deserializer property name escaping and address naming feedback (dotnet/corefx#37124)
Commit migrated from https://github.com/dotnet/corefx/commit/
cf0624854a1a4d8eda961a6eb06bb803b0555dfd
Zachary Danz [Wed, 24 Apr 2019 17:57:55 +0000 (10:57 -0700)]
Fix link to Preview SDKs (dotnet/corefx#37150)
Commit migrated from https://github.com/dotnet/corefx/commit/
c73d2c15c0194ead26d54cb72224f2daf1e1c5cc
dotnet-maestro[bot] [Wed, 24 Apr 2019 17:33:37 +0000 (17:33 +0000)]
[master] Update dependencies from dotnet/coreclr (dotnet/corefx#37141)
* Update dependencies from https://github.com/dotnet/coreclr build
20190423.74
- Microsoft.NET.Sdk.IL - 3.0.0-preview6-27623-74
- Microsoft.NETCore.ILAsm - 3.0.0-preview6-27623-74
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview6-27623-74
* Update ThreadPool test for revised behavior
Commit migrated from https://github.com/dotnet/corefx/commit/
7f60d72fb64cfacec41f47d59ac5e35ed54aa442
Jan Kotas [Wed, 24 Apr 2019 15:46:42 +0000 (08:46 -0700)]
Fix CPINFOEXW definition (dotnet/corefx#37131)
* Fix CPINFOEXW definition
* Unify MAX_PATH definition and switch to use it for GetCPInfoEx
Commit migrated from https://github.com/dotnet/corefx/commit/
24efeca2cb7e8a83125ecdbc62c95040fddabdf2
Stefan [Wed, 24 Apr 2019 15:05:14 +0000 (17:05 +0200)]
Add missing 'if' in summary comment (dotnet/corefx#37136)
Add missing 'if' in summary comment
Commit migrated from https://github.com/dotnet/corefx/commit/
7a60f1e1ef6080e0f29e007ae6218043abdef3ad
Tomas Weinfurt [Wed, 24 Apr 2019 11:02:23 +0000 (04:02 -0700)]
fix ReadAtLeastAsync (dotnet/corefx#37130)
Commit migrated from https://github.com/dotnet/corefx/commit/
c75330881567febca956696e0cc0bd66687bc1bc
Karel Zikmund [Wed, 24 Apr 2019 10:09:47 +0000 (03:09 -0700)]
Update System.IO* areas ownership
Commit migrated from https://github.com/dotnet/corefx/commit/
ad01dd1c314485bb2b86ed6743004a132912754d
Viktor Hofer [Wed, 24 Apr 2019 03:02:17 +0000 (05:02 +0200)]
Fix test asset publishing when retrying (dotnet/corefx#37116)
Fixes official builds that are retried, i.e.: https://dev.azure.com/dnceng/internal/_build/results?buildId=165244
Commit migrated from https://github.com/dotnet/corefx/commit/
918609481617f5c167496925c02bf0329afbff76
Charles Stoner [Wed, 24 Apr 2019 01:11:11 +0000 (18:11 -0700)]
Port remaining members of Microsoft.VisualBasic.Strings (dotnet/corefx#37123)
Commit migrated from https://github.com/dotnet/corefx/commit/
48cc70c649b7876ca43155451cafba5499107c07
Ludovic Henry [Tue, 23 Apr 2019 21:39:47 +0000 (14:39 -0700)]
Make GC.GetGCMemoryInfo public (dotnet/corefx#37092)
* Make GC.GetGCMemoryInfo public
Fix https://github.com/dotnet/corefx/issues/34631
* Fix uapaot framework
* Address review
* Add some tests
* Harden some tests
* Merge the GCMemoryInfo tests
* Simplify test
We are in a remote process, no need to clean up the GCHandle at the end of the test
Commit migrated from https://github.com/dotnet/corefx/commit/
9e2f3b630a51875fc0455a7cabb8803f6527f81e
Jim [Tue, 23 Apr 2019 21:29:19 +0000 (00:29 +0300)]
Fixes an issue with some characters not recognized as ASCII (dotnet/corefx#36879)
* Fixes an issue with some characters not recognized as ASCII
Three characters "{","|" and "}" was being wrongfully marked as NonAscii, thus making IsWellFormedUriString function return false when combined with any other Unicode character(s).
Fix dotnet/corefx#36101
* restored original solution file
* Updated test
Added "|" character to test string
Removed not needed unicode string
Added skip om Net Framework
* Added more strings to test
* Added comment and removed not needed check for escaping
Commit migrated from https://github.com/dotnet/corefx/commit/
e13d1c997475e938f6e1eee8c3c73cd166033090
Carlos Sanchez Lopez [Tue, 23 Apr 2019 20:46:50 +0000 (13:46 -0700)]
Directory.Move behaves differently on Unix vs. Windows (dotnet/corefx#37121)
* Directory.Move behaves differently on Unix vs. Windows
We will now throw an exception in Unix platforms like in Windows, if the destination path already exists.
* Modifying ExistingDirectory test method that verifies Move overwrite so its called by all platforms.
We already had a test method that tests Move when the destination path exists. I simply removed the platform attribute that restricted it to Windows and renamed the test method so its universal (as opposed to platform specific).
Commit migrated from https://github.com/dotnet/corefx/commit/
f9c85c033361ee5bfcf43707dc6d29731f8bc3cb
Tanner Gooding [Tue, 23 Apr 2019 20:40:45 +0000 (13:40 -0700)]
Regenerating reference sources in order to reorder enum fields (dotnet/corefx#37045)
Commit migrated from https://github.com/dotnet/corefx/commit/
17382def0f680653870c31af1acf086ac41dcc0b
Jose Perez Rodriguez [Tue, 23 Apr 2019 19:59:02 +0000 (12:59 -0700)]
Adding a few serialization attributes back to the reference assemblies (dotnet/corefx#37005)
* Adding a few serialization attributes back to the reference assemblies
* Use GenerateReferenceSource for the contracts that were changed
Commit migrated from https://github.com/dotnet/corefx/commit/
eea71b082b9f3d7ac74fe9297b1a5d66c1372508
William Godbe [Tue, 23 Apr 2019 19:27:57 +0000 (12:27 -0700)]
Merge pull request dotnet/corefx#37059 from dotnet/darc-master-
64fc4629-3427-4547-a455-
773e6620fa4c
[master] Update dependencies from dotnet/standard
Commit migrated from https://github.com/dotnet/corefx/commit/
50919ec6cd7f580d12c7c06909cbe812d3196e3d
Wraith2 [Sun, 7 Apr 2019 19:18:43 +0000 (20:18 +0100)]
special case bytes in udt parameter write
Commit migrated from https://github.com/dotnet/corefx/commit/
21e1b5d53c9b778ec53be473b612aa880005b3be
wtgodbe [Tue, 23 Apr 2019 17:06:19 +0000 (10:06 -0700)]
Update APICompat baseline
Commit migrated from https://github.com/dotnet/corefx/commit/
50e72c8b4a1b87872d1e35ae17fef4312c939488