Temporarily give System.Runtime.Extensions its own Environment.* copy (dotnet/corefx...
authorStephen Toub <stoub@microsoft.com>
Wed, 30 Jan 2019 17:53:04 +0000 (12:53 -0500)
committerGitHub <noreply@github.com>
Wed, 30 Jan 2019 17:53:04 +0000 (12:53 -0500)
commit11a619784a474be6e0704a597aee8f07db73e999
tree5c4a6cb5810969ab570ef61b3e21a7afe2ff7cde
parentc9870d0d2541cf19389474d5d0d6cb3f82f2d2f9
Temporarily give System.Runtime.Extensions its own Environment.* copy (dotnet/corefx#34951)

The files were moved to shared to propagate them to coreclr.  But changes being made in coreclr are going to break System.Runtime.Extensions when the files mirror back.  As a temporary stop-gap, I'm creating local copies of the files and taking System.Runtime.Environment off of the shared copies.  Then once coreclr builds with the updates and corefx consumes the updated coreclr, we'll just delete these temporary copies and remove the relevant entries entirely from System.Runtime.Extensions.

Commit migrated from https://github.com/dotnet/corefx/commit/2f6536eb0a2f6ac246f99382d0235dffd75eb1c4
src/libraries/System.Runtime.Extensions/src/System.Runtime.Extensions.csproj
src/libraries/System.Runtime.Extensions/src/System/Environment.SpecialFolder.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.SpecialFolderOption.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.Unix.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.Win32.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.WinRT.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.Windows.cs [new file with mode: 0644]
src/libraries/System.Runtime.Extensions/src/System/Environment.cs [new file with mode: 0644]