diff --git a/build-packages.cmd b/build-packages.cmd index 121d34897758..4ae89daa1b8a 100644 --- a/build-packages.cmd +++ b/build-packages.cmd @@ -7,6 +7,10 @@ echo Running build-packages.cmd %* > %packagesLog% if /I [%1] == [/?] goto Usage if /I [%1] == [/help] goto Usage +REM ensure that msbuild is available +echo Running init-tools.cmd +call %~dp0init-tools.cmd + echo msbuild.exe %~dp0src\packages.builds %* /nologo /v:minimal /flp:v=detailed;Append;LogFile=%packagesLog% >> %packagesLog% call msbuild.exe %~dp0src\packages.builds %* /nologo /v:minimal /flp:v=detailed;Append;LogFile=%packagesLog% if NOT [%ERRORLEVEL%]==[0] ( diff --git a/build-packages.sh b/build-packages.sh index b235c87b8524..7d560d651517 100755 --- a/build-packages.sh +++ b/build-packages.sh @@ -14,10 +14,14 @@ arguments="$@" echo -e "Running build-packages.sh $arguments" > $build_packages_log # Parse arguments -if [ $arguments == "-h" ] || [ $arguments == "--help" ]; then +if [ "$arguments" == "-h" ] || [ "$arguments" == "--help" ]; then usage fi +# Ensure that MSBuild is available +echo "Running init-tools.sh" +$working_tree_root/init-tools.sh + echo -e "\n$working_tree_root/Tools/corerun $working_tree_root/Tools/MSBuild.exe $working_tree_root/src/packages.builds $arguments /nologo /v:minimal /flp:v=detailed;Append;LogFile=$build_packages_log" >> $build_packages_log $working_tree_root/Tools/corerun $working_tree_root/Tools/MSBuild.exe $working_tree_root/src/packages.builds $arguments /nologo /v:minimal "/flp:v=detailed;Append;LogFile=$build_packages_log" diff --git a/build-tests.cmd b/build-tests.cmd new file mode 100644 index 000000000000..865a28c9dca6 --- /dev/null +++ b/build-tests.cmd @@ -0,0 +1,24 @@ +@if "%_echo%" neq "on" echo off +setlocal + +set buildTests=build-tests.log +echo Running build-tests.cmd %* > %buildTests% + +if /I [%1] == [/?] goto Usage +if /I [%1] == [/help] goto Usage + +echo msbuild.exe %~dp0src\tests.builds /nologo /maxcpucount /v:minimal /clp:Summary /nodeReuse:false /flp:v=detailed;Append;LogFile=%buildTests% %*>> %buildTests% +call msbuild.exe %~dp0src\tests.builds /nologo /maxcpucount /v:minimal /clp:Summary /nodeReuse:false /flp:v=detailed;Append;LogFile=%buildTests% %* +if NOT [%ERRORLEVEL%]==[0] ( + echo ERROR: An error occurred while building the tests, see %buildTests% for more details. + exit /b +) + +echo Done Building tests. +exit /b + +:Usage +echo. +echo Builds the tests that are in the repository. +echo No option parameters. +exit /b \ No newline at end of file diff --git a/build.proj b/build.proj index e277e701a324..331291a053d3 100644 --- a/build.proj +++ b/build.proj @@ -17,6 +17,8 @@ true true + + true @@ -24,6 +26,7 @@ $(OSEnvironment) + diff --git a/dir.props b/dir.props index 214215643422..9b2c4441dcdd 100644 --- a/dir.props +++ b/dir.props @@ -76,7 +76,7 @@ true true - rc3-23925-00 + rc3-23925-01 diff --git a/init-tools.sh b/init-tools.sh index f56ac91109f1..ccb798d56a76 100755 --- a/init-tools.sh +++ b/init-tools.sh @@ -19,6 +19,7 @@ case $OSName in Darwin) OS=OSX __DOTNET_PKG=dotnet-osx-x64 + ulimit -n 2048 ;; Linux) diff --git a/src/Common/src/Interop/Windows/sspicli/SSPIWrapper.cs b/src/Common/src/Interop/Windows/sspicli/SSPIWrapper.cs index fc5391d4eec0..315d10798427 100644 --- a/src/Common/src/Interop/Windows/sspicli/SSPIWrapper.cs +++ b/src/Common/src/Interop/Windows/sspicli/SSPIWrapper.cs @@ -16,7 +16,7 @@ internal static SecurityPackageInfoClass[] EnumerateSecurityPackages(SSPIInterfa { if (GlobalLog.IsEnabled) { - GlobalLog.Enter("EnumerateSecurityPackages"); + GlobalLog.Enter(nameof(EnumerateSecurityPackages)); } if (secModule.SecurityPackages == null) @@ -66,7 +66,7 @@ internal static SecurityPackageInfoClass[] EnumerateSecurityPackages(SSPIInterfa if (GlobalLog.IsEnabled) { - GlobalLog.Leave("EnumerateSecurityPackages"); + GlobalLog.Leave(nameof(EnumerateSecurityPackages)); } return secModule.SecurityPackages; } @@ -255,7 +255,7 @@ internal static int InitializeSecurityContext(SSPIInterface secModule, ref SafeF if (SecurityEventSource.Log.IsEnabled()) { - SecurityEventSource.Log.SecurityContextInputBuffer("InitializeSecurityContext", (inputBuffer == null ? 0 : inputBuffer.size), outputBuffer.size, (Interop.SecurityStatus)errorCode); + SecurityEventSource.Log.SecurityContextInputBuffer(nameof(InitializeSecurityContext), (inputBuffer == null ? 0 : inputBuffer.size), outputBuffer.size, (Interop.SecurityStatus)errorCode); } return errorCode; @@ -275,7 +275,7 @@ internal static int InitializeSecurityContext(SSPIInterface secModule, SafeFreeC if (SecurityEventSource.Log.IsEnabled()) { - SecurityEventSource.Log.SecurityContextInputBuffers("InitializeSecurityContext", (inputBuffers == null ? 0 : inputBuffers.Length), outputBuffer.size, (Interop.SecurityStatus)errorCode); + SecurityEventSource.Log.SecurityContextInputBuffers(nameof(InitializeSecurityContext), (inputBuffers == null ? 0 : inputBuffers.Length), outputBuffer.size, (Interop.SecurityStatus)errorCode); } return errorCode; @@ -292,7 +292,7 @@ internal static int AcceptSecurityContext(SSPIInterface secModule, ref SafeFreeC if (SecurityEventSource.Log.IsEnabled()) { - SecurityEventSource.Log.SecurityContextInputBuffer("AcceptSecurityContext", (inputBuffer == null ? 0 : inputBuffer.size), outputBuffer.size, (Interop.SecurityStatus)errorCode); + SecurityEventSource.Log.SecurityContextInputBuffer(nameof(AcceptSecurityContext), (inputBuffer == null ? 0 : inputBuffer.size), outputBuffer.size, (Interop.SecurityStatus)errorCode); } return errorCode; @@ -309,7 +309,7 @@ internal static int AcceptSecurityContext(SSPIInterface secModule, SafeFreeCrede if (SecurityEventSource.Log.IsEnabled()) { - SecurityEventSource.Log.SecurityContextInputBuffers("AcceptSecurityContext", (inputBuffers == null ? 0 : inputBuffers.Length), outputBuffer.size, (Interop.SecurityStatus)errorCode); + SecurityEventSource.Log.SecurityContextInputBuffers(nameof(AcceptSecurityContext), (inputBuffers == null ? 0 : inputBuffers.Length), outputBuffer.size, (Interop.SecurityStatus)errorCode); } return errorCode; @@ -522,7 +522,7 @@ public static SafeFreeContextBufferChannelBinding QueryContextChannelBinding(SSP { if (GlobalLog.IsEnabled) { - GlobalLog.Enter("QueryContextChannelBinding", contextAttribute.ToString()); + GlobalLog.Enter(nameof(QueryContextChannelBinding), contextAttribute.ToString()); } SafeFreeContextBufferChannelBinding result; @@ -531,14 +531,14 @@ public static SafeFreeContextBufferChannelBinding QueryContextChannelBinding(SSP { if (GlobalLog.IsEnabled) { - GlobalLog.Leave("QueryContextChannelBinding", "ERROR = " + ErrorDescription(errorCode)); + GlobalLog.Leave(nameof(QueryContextChannelBinding), "ERROR = " + ErrorDescription(errorCode)); } return null; } if (GlobalLog.IsEnabled) { - GlobalLog.Leave("QueryContextChannelBinding", LoggingHash.HashString(result)); + GlobalLog.Leave(nameof(QueryContextChannelBinding), LoggingHash.HashString(result)); } return result; } @@ -553,7 +553,7 @@ public static object QueryContextAttributes(SSPIInterface secModule, SafeDeleteC { if (GlobalLog.IsEnabled) { - GlobalLog.Enter("QueryContextAttributes", contextAttribute.ToString()); + GlobalLog.Enter(nameof(QueryContextAttributes), contextAttribute.ToString()); } int nativeBlockSize = IntPtr.Size; @@ -603,7 +603,7 @@ public static object QueryContextAttributes(SSPIInterface secModule, SafeDeleteC break; default: - throw new ArgumentException(SR.Format(SR.net_invalid_enum, "ContextAttribute"), nameof(contextAttribute)); + throw new ArgumentException(SR.Format(SR.net_invalid_enum, nameof(contextAttribute)), nameof(contextAttribute)); } SafeHandle sspiHandle = null; @@ -684,7 +684,7 @@ public static object QueryContextAttributes(SSPIInterface secModule, SafeDeleteC if (GlobalLog.IsEnabled) { - GlobalLog.Leave("QueryContextAttributes", LoggingHash.ObjectToString(attribute)); + GlobalLog.Leave(nameof(QueryContextAttributes), LoggingHash.ObjectToString(attribute)); } return attribute; diff --git a/src/Common/src/System/Globalization/IdnMapping.cs b/src/Common/src/System/Globalization/IdnMapping.cs index 443a63498eb4..98c4ffd33329 100644 --- a/src/Common/src/System/Globalization/IdnMapping.cs +++ b/src/Common/src/System/Globalization/IdnMapping.cs @@ -76,7 +76,7 @@ public string GetAscii(string unicode, int index, int count) if (index < 0 || count < 0) throw new ArgumentOutOfRangeException((index < 0) ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (index > unicode.Length) - throw new ArgumentOutOfRangeException("byteIndex", SR.ArgumentOutOfRange_Index); + throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_Index); if (index > unicode.Length - count) throw new ArgumentOutOfRangeException(nameof(unicode), SR.ArgumentOutOfRange_IndexCountBuffer); Contract.EndContractBlock(); @@ -117,7 +117,7 @@ public string GetUnicode(string ascii, int index, int count) if (index < 0 || count < 0) throw new ArgumentOutOfRangeException((index < 0) ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (index > ascii.Length) - throw new ArgumentOutOfRangeException("byteIndex", SR.ArgumentOutOfRange_Index); + throw new ArgumentOutOfRangeException(nameof(index), SR.ArgumentOutOfRange_Index); if (index > ascii.Length - count) throw new ArgumentOutOfRangeException(nameof(ascii), SR.ArgumentOutOfRange_IndexCountBuffer); diff --git a/src/Common/src/System/Runtime/InteropServices/SafeHeapHandle.cs b/src/Common/src/System/Runtime/InteropServices/SafeHeapHandle.cs index 2b2a98662805..92b3d980db36 100644 --- a/src/Common/src/System/Runtime/InteropServices/SafeHeapHandle.cs +++ b/src/Common/src/System/Runtime/InteropServices/SafeHeapHandle.cs @@ -33,7 +33,7 @@ public override bool IsInvalid /// Thrown if size is greater than the maximum memory size. public void Resize(ulong byteLength) { - if (IsClosed) throw new ObjectDisposedException("SafeHeapHandle"); + if (IsClosed) throw new ObjectDisposedException(nameof(SafeHeapHandle)); ulong originalLength = 0; if (handle == IntPtr.Zero) diff --git a/src/Common/src/System/Xml/Schema/XmlUntypedConverter.cs b/src/Common/src/System/Xml/Schema/XmlUntypedConverter.cs index d6b9924687ad..46ca6c158391 100644 --- a/src/Common/src/System/Xml/Schema/XmlUntypedConverter.cs +++ b/src/Common/src/System/Xml/Schema/XmlUntypedConverter.cs @@ -270,7 +270,7 @@ private static byte[] StringToBase64Binary(string value) private static short Int32ToInt16(int value) { if (value < (int)Int16.MinValue || value > (int)Int16.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Int16" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(Int16) })); return (short)value; } @@ -278,7 +278,7 @@ private static short Int32ToInt16(int value) private static byte Int32ToByte(int value) { if (value < (int)Byte.MinValue || value > (int)Byte.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "Byte" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(Byte) })); return (byte)value; } @@ -286,7 +286,7 @@ private static byte Int32ToByte(int value) private static ulong DecimalToUInt64(decimal value) { if (value < (decimal)UInt64.MinValue || value > (decimal)UInt64.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt64" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(UInt64) })); return (ulong)value; } @@ -294,7 +294,7 @@ private static ulong DecimalToUInt64(decimal value) private static sbyte Int32ToSByte(int value) { if (value < (int)SByte.MinValue || value > (int)SByte.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "SByte" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(SByte) })); return (sbyte)value; } @@ -336,7 +336,7 @@ private static XmlQualifiedName StringToQName(string value, IXmlNamespaceResolve private static ushort Int32ToUInt16(int value) { if (value < (int)UInt16.MinValue || value > (int)UInt16.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt16" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(UInt16) })); return (ushort)value; } @@ -344,7 +344,7 @@ private static ushort Int32ToUInt16(int value) private static uint Int64ToUInt32(long value) { if (value < (long)UInt32.MinValue || value > (long)UInt32.MaxValue) - throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), "UInt32" })); + throw new OverflowException(SR.Format(SR.XmlConvert_Overflow, new string[] { XmlConvert.ToString(value), nameof(UInt32) })); return (uint)value; } diff --git a/src/Common/src/System/Xml/XmlConvertEx.cs b/src/Common/src/System/Xml/XmlConvertEx.cs index 37707e89882f..837078dae800 100644 --- a/src/Common/src/System/Xml/XmlConvertEx.cs +++ b/src/Common/src/System/Xml/XmlConvertEx.cs @@ -72,13 +72,13 @@ public static Uri ToUri(string s) s = TrimString(s); if (s.Length == 0 || s.IndexOf("##", StringComparison.Ordinal) != -1) { - throw new FormatException(SR.Format(SR.XmlConvert_BadFormat, s, "Uri")); + throw new FormatException(SR.Format(SR.XmlConvert_BadFormat, s, nameof(Uri))); } } Uri uri; if (!Uri.TryCreate(s, UriKind.RelativeOrAbsolute, out uri)) { - throw new FormatException(SR.Format(SR.XmlConvert_BadFormat, s, "Uri")); + throw new FormatException(SR.Format(SR.XmlConvert_BadFormat, s, nameof(Uri))); } return uri; } diff --git a/src/Common/test-runtime/project.json b/src/Common/test-runtime/project.json index 461b49fd03d8..cedc26a23f86 100644 --- a/src/Common/test-runtime/project.json +++ b/src/Common/test-runtime/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.NETCore.TestHost": "1.0.0-rc3-23925-00", - "Microsoft.NETCore.Console": "1.0.0-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.NETCore.TestHost": "1.0.0-rc3-23925-01", + "Microsoft.NETCore.Console": "1.0.0-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", "coveralls.io": "1.4", "OpenCover": "4.6.519", "ReportGenerator": "2.4.3", diff --git a/src/Common/tests/System/Diagnostics/RemoteExecutorConsoleApp/project.json b/src/Common/tests/System/Diagnostics/RemoteExecutorConsoleApp/project.json index 31c9d4975f6a..b48f7eaa3fc0 100644 --- a/src/Common/tests/System/Diagnostics/RemoteExecutorConsoleApp/project.json +++ b/src/Common/tests/System/Diagnostics/RemoteExecutorConsoleApp/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/Common/tests/System/Xml/BaseLibManaged/project.json b/src/Common/tests/System/Xml/BaseLibManaged/project.json index 898ae851387e..fb19b6a9a9a9 100644 --- a/src/Common/tests/System/Xml/BaseLibManaged/project.json +++ b/src/Common/tests/System/Xml/BaseLibManaged/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00" + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01" }, "frameworks": { "netstandard1.0": {} diff --git a/src/Common/tests/System/Xml/ModuleCore/project.json b/src/Common/tests/System/Xml/ModuleCore/project.json index 33d6dcbb7f30..9bf59a1a49f2 100644 --- a/src/Common/tests/System/Xml/ModuleCore/project.json +++ b/src/Common/tests/System/Xml/ModuleCore/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/Common/tests/System/Xml/XmlCoreTest/project.json b/src/Common/tests/System/Xml/XmlCoreTest/project.json index 687f2d876566..20d87fbd1e2a 100644 --- a/src/Common/tests/System/Xml/XmlCoreTest/project.json +++ b/src/Common/tests/System/Xml/XmlCoreTest/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/Common/tests/System/Xml/XmlDiff/project.json b/src/Common/tests/System/Xml/XmlDiff/project.json index aad0d88da002..bd3ee3f5530c 100644 --- a/src/Common/tests/System/Xml/XmlDiff/project.json +++ b/src/Common/tests/System/Xml/XmlDiff/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/Common/tests/project.json b/src/Common/tests/project.json index bb50d3e5eda5..2995064a05b0 100644 --- a/src/Common/tests/project.json +++ b/src/Common/tests/project.json @@ -1,24 +1,24 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Microsoft.CSharp/src/project.json b/src/Microsoft.CSharp/src/project.json index ff45f54e9335..dbc3ea219992 100644 --- a/src/Microsoft.CSharp/src/project.json +++ b/src/Microsoft.CSharp/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/Microsoft.CSharp/tests/project.json b/src/Microsoft.CSharp/tests/project.json index 58bb8637bbbe..859f0e0222bd 100644 --- a/src/Microsoft.CSharp/tests/project.json +++ b/src/Microsoft.CSharp/tests/project.json @@ -1,25 +1,25 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Dynamic.Runtime": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Dynamic.Runtime": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/ExceptionUtils.vb b/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/ExceptionUtils.vb index 7b9479bbeb85..bc1f3923cf59 100644 --- a/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/ExceptionUtils.vb +++ b/src/Microsoft.VisualBasic/src/Microsoft/VisualBasic/CompilerServices/ExceptionUtils.vb @@ -24,7 +24,7 @@ Namespace Microsoft.VisualBasic.CompilerServices End Function Friend Shared Function VbMakeObjNotSetException() As System.Exception - Return VbMakeExceptionEx(vbErrors.IllegalFor, GetResourceString(SR.ID91)) ' 91 - ObjNotSet + Return VbMakeExceptionEx(vbErrors.ObjNotSet, GetResourceString(SR.ID91)) ' 91 - ObjNotSet End Function Private Shared Function VbMakeExceptionEx(ByVal number As Integer, ByVal sMsg As String) As System.Exception diff --git a/src/Microsoft.VisualBasic/tests/project.json b/src/Microsoft.VisualBasic/tests/project.json index 1305b46a14ba..8931031d5e65 100644 --- a/src/Microsoft.VisualBasic/tests/project.json +++ b/src/Microsoft.VisualBasic/tests/project.json @@ -1,27 +1,27 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Dynamic.Runtime": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Dynamic.Runtime": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Microsoft.Win32.Primitives/src/project.json b/src/Microsoft.Win32.Primitives/src/project.json index ed55b3b00cb6..e51c919f5fb1 100644 --- a/src/Microsoft.Win32.Primitives/src/project.json +++ b/src/Microsoft.Win32.Primitives/src/project.json @@ -7,7 +7,7 @@ }, "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20" }, diff --git a/src/Microsoft.Win32.Primitives/tests/project.json b/src/Microsoft.Win32.Primitives/tests/project.json index e8d8f4438c20..eb292f8c7057 100644 --- a/src/Microsoft.Win32.Primitives/tests/project.json +++ b/src/Microsoft.Win32.Primitives/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Microsoft.Win32.Registry.AccessControl/ref/project.json b/src/Microsoft.Win32.Registry.AccessControl/ref/project.json index 94732d672bd3..4a3d6419e770 100644 --- a/src/Microsoft.Win32.Registry.AccessControl/ref/project.json +++ b/src/Microsoft.Win32.Registry.AccessControl/ref/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", "System.Runtime": "4.0.0", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00" + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/Microsoft.Win32.Registry.AccessControl/src/project.json b/src/Microsoft.Win32.Registry.AccessControl/src/project.json index dd60ebf770f9..8d094050b1b8 100644 --- a/src/Microsoft.Win32.Registry.AccessControl/src/project.json +++ b/src/Microsoft.Win32.Registry.AccessControl/src/project.json @@ -2,15 +2,15 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", "System.IO": "4.0.10", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00" + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/Microsoft.Win32.Registry.AccessControl/tests/project.json b/src/Microsoft.Win32.Registry.AccessControl/tests/project.json index d4ae2a9c7648..19883f939abf 100644 --- a/src/Microsoft.Win32.Registry.AccessControl/tests/project.json +++ b/src/Microsoft.Win32.Registry.AccessControl/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Microsoft.Win32.Registry/src/project.json b/src/Microsoft.Win32.Registry/src/project.json index bd0fb45d9ba6..260a5f58ac2a 100644 --- a/src/Microsoft.Win32.Registry/src/project.json +++ b/src/Microsoft.Win32.Registry/src/project.json @@ -7,7 +7,7 @@ }, "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/Microsoft.Win32.Registry/tests/project.json b/src/Microsoft.Win32.Registry/tests/project.json index 5116f4ff9262..9ce5ee2795cf 100644 --- a/src/Microsoft.Win32.Registry/tests/project.json +++ b/src/Microsoft.Win32.Registry/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/Native/Windows/probe-win.ps1 b/src/Native/Windows/probe-win.ps1 index 70030b14d3b2..f4a94fa40e56 100644 --- a/src/Native/Windows/probe-win.ps1 +++ b/src/Native/Windows/probe-win.ps1 @@ -11,6 +11,7 @@ function GetCMakeVersions function GetCMakeInfo($regKey) { + # This no longer works for versions 3.5+ try { $version = [System.Version] $regKey.PSChildName.Split(' ')[1] } @@ -32,6 +33,11 @@ function LocateCMake if ($inPathPath -ne $null) { return $inPathPath } + # Check the default installation directory + $inDefaultDir = [System.IO.Path]::Combine(${Env:ProgramFiles(x86)}, "CMake\bin\cmake.exe") + if ([System.IO.File]::Exists($inDefaultDir)) { + return $inDefaultDir + } # Let us hope that CMake keep using their current version scheme $validVersions = @() foreach ($regKey in GetCMakeVersions) { diff --git a/src/System.AppContext/src/netcore50aot/project.json b/src/System.AppContext/src/netcore50aot/project.json index 03a986a2b740..8e08a577cbd7 100644 --- a/src/System.AppContext/src/netcore50aot/project.json +++ b/src/System.AppContext/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.0", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.AppContext/src/project.json b/src/System.AppContext/src/project.json index 117f59446de3..6422dee2cb70 100644 --- a/src/System.AppContext/src/project.json +++ b/src/System.AppContext/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net462": { diff --git a/src/System.AppContext/tests/project.json b/src/System.AppContext/tests/project.json index 685524c68737..cf837f4ac225 100644 --- a/src/System.AppContext/tests/project.json +++ b/src/System.AppContext/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.AppContext": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.AppContext": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Buffers/src/project.json b/src/System.Buffers/src/project.json index e84d5dfb761e..9184ca031dba 100644 --- a/src/System.Buffers/src/project.json +++ b/src/System.Buffers/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tracing": "4.0.0", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Buffers/tests/project.json b/src/System.Buffers/tests/project.json index dd53b436ca66..144a3a4c3a7f 100644 --- a/src/System.Buffers/tests/project.json +++ b/src/System.Buffers/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Collections.Concurrent/src/System/Collections/Concurrent/BlockingCollection.cs b/src/System.Collections.Concurrent/src/System/Collections/Concurrent/BlockingCollection.cs index 2a814f80f329..0a1fc2592013 100644 --- a/src/System.Collections.Concurrent/src/System/Collections/Concurrent/BlockingCollection.cs +++ b/src/System.Collections.Concurrent/src/System/Collections/Concurrent/BlockingCollection.cs @@ -1784,7 +1784,7 @@ private void CheckDisposed() { if (_isDisposed) { - throw new ObjectDisposedException("BlockingCollection", SR.BlockingCollection_Disposed); + throw new ObjectDisposedException(nameof(BlockingCollection), SR.BlockingCollection_Disposed); } } } diff --git a/src/System.Collections.Concurrent/src/project.json b/src/System.Collections.Concurrent/src/project.json index 932d110c7535..102f9be641c2 100644 --- a/src/System.Collections.Concurrent/src/project.json +++ b/src/System.Collections.Concurrent/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Collections.Concurrent/tests/project.json b/src/System.Collections.Concurrent/tests/project.json index 68048e4cc360..52f1bc1f009e 100644 --- a/src/System.Collections.Concurrent/tests/project.json +++ b/src/System.Collections.Concurrent/tests/project.json @@ -1,20 +1,20 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Collections.Immutable/src/project.json b/src/System.Collections.Immutable/src/project.json index 68bebc2a617d..3a3d685a77c1 100644 --- a/src/System.Collections.Immutable/src/project.json +++ b/src/System.Collections.Immutable/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", diff --git a/src/System.Collections.Immutable/tests/project.json b/src/System.Collections.Immutable/tests/project.json index 5ba307a36e5e..c87bdd36264e 100644 --- a/src/System.Collections.Immutable/tests/project.json +++ b/src/System.Collections.Immutable/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Reflection.Emit.Lightweight": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Reflection.Emit.Lightweight": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Collections.NonGeneric/src/System/Collections/ArrayList.cs b/src/System.Collections.NonGeneric/src/System/Collections/ArrayList.cs index 2b3083b12ca1..2e0925c8a26a 100644 --- a/src/System.Collections.NonGeneric/src/System/Collections/ArrayList.cs +++ b/src/System.Collections.NonGeneric/src/System/Collections/ArrayList.cs @@ -66,7 +66,7 @@ public ArrayList() // public ArrayList(int capacity) { - if (capacity < 0) throw new ArgumentOutOfRangeException(nameof(capacity), SR.Format(SR.ArgumentOutOfRange_MustBeNonNegNum, "capacity")); + if (capacity < 0) throw new ArgumentOutOfRangeException(nameof(capacity), SR.Format(SR.ArgumentOutOfRange_MustBeNonNegNum, nameof(capacity))); Contract.EndContractBlock(); if (capacity == 0) @@ -584,7 +584,7 @@ public virtual int LastIndexOf(Object value, int startIndex) public virtual int LastIndexOf(Object value, int startIndex, int count) { if (Count != 0 && (startIndex < 0 || count < 0)) - throw new ArgumentOutOfRangeException((startIndex < 0 ? "startIndex" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(startIndex < 0 ? nameof(startIndex) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.Ensures(Contract.Result() < Count); Contract.EndContractBlock(); @@ -592,7 +592,7 @@ public virtual int LastIndexOf(Object value, int startIndex, int count) return -1; if (startIndex >= _size || count > startIndex + 1) - throw new ArgumentOutOfRangeException((startIndex >= _size ? "startIndex" : "count"), SR.ArgumentOutOfRange_BiggerThanCollection); + throw new ArgumentOutOfRangeException(startIndex >= _size ? nameof(startIndex) : nameof(count), SR.ArgumentOutOfRange_BiggerThanCollection); return Array.LastIndexOf((Array)_items, value, startIndex, count); } @@ -743,7 +743,7 @@ public virtual void SetRange(int index, ICollection c) public virtual ArrayList GetRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_size - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.Ensures(Contract.Result() != null); @@ -932,7 +932,7 @@ public override void AddRange(ICollection c) public override int BinarySearch(int index, int count, Object value, IComparer comparer) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -993,7 +993,7 @@ public override void CopyTo(int index, Array array, int arrayIndex, int count) if (array == null) throw new ArgumentNullException(nameof(array)); if (index < 0 || arrayIndex < 0) - throw new ArgumentOutOfRangeException((index < 0) ? "index" : "arrayIndex", SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(arrayIndex), SR.ArgumentOutOfRange_NeedNonNegNum); if (count < 0) throw new ArgumentOutOfRangeException(nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (array.Length - arrayIndex < count) @@ -1017,7 +1017,7 @@ public override IEnumerator GetEnumerator() public override IEnumerator GetEnumerator(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.EndContractBlock(); if (_list.Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); @@ -1147,7 +1147,7 @@ public override void RemoveAt(int index) public override void RemoveRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.EndContractBlock(); if (_list.Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); @@ -1165,7 +1165,7 @@ public override void RemoveRange(int index, int count) public override void Reverse(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.EndContractBlock(); if (_list.Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); @@ -1208,7 +1208,7 @@ public override void SetRange(int index, ICollection c) public override ArrayList GetRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.EndContractBlock(); if (_list.Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); @@ -1218,7 +1218,7 @@ public override ArrayList GetRange(int index, int count) public override void Sort(int index, int count, IComparer comparer) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); Contract.EndContractBlock(); if (_list.Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); @@ -2074,7 +2074,7 @@ public override void SetRange(int index, ICollection c) public override ArrayList GetRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2385,7 +2385,7 @@ public override void SetRange(int index, ICollection c) public override ArrayList GetRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (Count - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2543,7 +2543,7 @@ public override void AddRange(ICollection c) public override int BinarySearch(int index, int count, Object value, IComparer comparer) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2630,7 +2630,7 @@ public override void CopyTo(int index, Array array, int arrayIndex, int count) if (array.Rank != 1) throw new ArgumentException(SR.Arg_RankMultiDimNotSupported); if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (array.Length - arrayIndex < count) throw new ArgumentException(SR.Argument_InvalidOffLen); if (_baseSize - index < count) @@ -2673,7 +2673,7 @@ public override IEnumerator GetEnumerator() public override IEnumerator GetEnumerator(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2685,7 +2685,7 @@ public override IEnumerator GetEnumerator(int index, int count) public override ArrayList GetRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2817,7 +2817,7 @@ public override void RemoveAt(int index) public override void RemoveRange(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2836,7 +2836,7 @@ public override void RemoveRange(int index, int count) public override void Reverse(int index, int count) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); @@ -2861,7 +2861,7 @@ public override void SetRange(int index, ICollection c) public override void Sort(int index, int count, IComparer comparer) { if (index < 0 || count < 0) - throw new ArgumentOutOfRangeException((index < 0 ? "index" : "count"), SR.ArgumentOutOfRange_NeedNonNegNum); + throw new ArgumentOutOfRangeException(index < 0 ? nameof(index) : nameof(count), SR.ArgumentOutOfRange_NeedNonNegNum); if (_baseSize - index < count) throw new ArgumentException(SR.Argument_InvalidOffLen); Contract.EndContractBlock(); diff --git a/src/System.Collections.NonGeneric/src/project.json b/src/System.Collections.NonGeneric/src/project.json index c4ad467573e1..30e70fb3aa7a 100644 --- a/src/System.Collections.NonGeneric/src/project.json +++ b/src/System.Collections.NonGeneric/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Collections.NonGeneric/tests/project.json b/src/System.Collections.NonGeneric/tests/project.json index b085cff907d8..cd1335c3556e 100644 --- a/src/System.Collections.NonGeneric/tests/project.json +++ b/src/System.Collections.NonGeneric/tests/project.json @@ -1,20 +1,20 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Collections.Specialized/src/System/Collections/Specialized/BitVector32.cs b/src/System.Collections.Specialized/src/System/Collections/Specialized/BitVector32.cs index 407732b70e29..f2d7685401a4 100644 --- a/src/System.Collections.Specialized/src/System/Collections/Specialized/BitVector32.cs +++ b/src/System.Collections.Specialized/src/System/Collections/Specialized/BitVector32.cs @@ -168,7 +168,7 @@ private static Section CreateSectionHelper(short maxValue, short priorMask, shor { if (maxValue < 1) { - throw new ArgumentException(SR.Format(SR.Argument_InvalidValue, "maxValue", 1), nameof(maxValue)); + throw new ArgumentException(SR.Format(SR.Argument_InvalidValue, nameof(maxValue), 1), nameof(maxValue)); } short offset = (short)(priorOffset + CountBitsSet(priorMask)); diff --git a/src/System.Collections.Specialized/src/project.json b/src/System.Collections.Specialized/src/project.json index d582b0bb1d85..94da5381d999 100644 --- a/src/System.Collections.Specialized/src/project.json +++ b/src/System.Collections.Specialized/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections.NonGeneric": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Collections.Specialized/tests/project.json b/src/System.Collections.Specialized/tests/project.json index 51b1dc69366b..11e2a9ffee63 100644 --- a/src/System.Collections.Specialized/tests/project.json +++ b/src/System.Collections.Specialized/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Collections/src/project.json b/src/System.Collections/src/project.json index 967a56e45aef..b8e9e290c8c7 100644 --- a/src/System.Collections/src/project.json +++ b/src/System.Collections/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -16,7 +16,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Collections/tests/project.json b/src/System.Collections/tests/project.json index 62ef46af9201..e5c7848e983e 100644 --- a/src/System.Collections/tests/project.json +++ b/src/System.Collections/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ComponentModel.Annotations/tests/project.json b/src/System.ComponentModel.Annotations/tests/project.json index a319413ea01b..4a8051d00bd5 100644 --- a/src/System.ComponentModel.Annotations/tests/project.json +++ b/src/System.ComponentModel.Annotations/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.ComponentModel": "4.0.1-rc3-23925-00", - "System.ComponentModel.Annotations": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.ComponentModel": "4.0.1-rc3-23925-01", + "System.ComponentModel.Annotations": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ComponentModel.EventBasedAsync/src/project.json b/src/System.ComponentModel.EventBasedAsync/src/project.json index 60c27bbccd85..205b33a16891 100644 --- a/src/System.ComponentModel.EventBasedAsync/src/project.json +++ b/src/System.ComponentModel.EventBasedAsync/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.ComponentModel.EventBasedAsync/tests/project.json b/src/System.ComponentModel.EventBasedAsync/tests/project.json index ca811ba51a42..c5f8a4a01b13 100644 --- a/src/System.ComponentModel.EventBasedAsync/tests/project.json +++ b/src/System.ComponentModel.EventBasedAsync/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ComponentModel.Primitives/tests/project.json b/src/System.ComponentModel.Primitives/tests/project.json index 93ae146207e6..e3cc705e20d6 100644 --- a/src/System.ComponentModel.Primitives/tests/project.json +++ b/src/System.ComponentModel.Primitives/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.ComponentModel": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.ComponentModel": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ComponentModel.TypeConverter/tests/project.json b/src/System.ComponentModel.TypeConverter/tests/project.json index 4aacb4809084..1842ad8d0c8b 100644 --- a/src/System.ComponentModel.TypeConverter/tests/project.json +++ b/src/System.ComponentModel.TypeConverter/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.ComponentModel": "4.0.1-rc3-23925-00", - "System.ComponentModel.Primitives": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.ComponentModel": "4.0.1-rc3-23925-01", + "System.ComponentModel.Primitives": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ComponentModel/tests/project.json b/src/System.ComponentModel/tests/project.json index 89d7fa6596b3..4c080e8f783d 100644 --- a/src/System.ComponentModel/tests/project.json +++ b/src/System.ComponentModel/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Composition.AttributedModel/src/project.json b/src/System.Composition.AttributedModel/src/project.json index e5f592ec6ab6..303e6d0688eb 100644 --- a/src/System.Composition.AttributedModel/src/project.json +++ b/src/System.Composition.AttributedModel/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Composition.Convention/src/project.json b/src/System.Composition.Convention/src/project.json index f9973e37d807..7a5655bb71fb 100644 --- a/src/System.Composition.Convention/src/project.json +++ b/src/System.Composition.Convention/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Globalization": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Composition.Convention/tests/project.json b/src/System.Composition.Convention/tests/project.json index 64e8e199d923..d1d01bddce43 100644 --- a/src/System.Composition.Convention/tests/project.json +++ b/src/System.Composition.Convention/tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Composition.Hosting/src/project.json b/src/System.Composition.Hosting/src/project.json index 320659296e03..a10673bb7ca6 100644 --- a/src/System.Composition.Hosting/src/project.json +++ b/src/System.Composition.Hosting/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", diff --git a/src/System.Composition.Runtime/src/project.json b/src/System.Composition.Runtime/src/project.json index 3a880165af86..097e67099a55 100644 --- a/src/System.Composition.Runtime/src/project.json +++ b/src/System.Composition.Runtime/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Composition.TypedParts/src/project.json b/src/System.Composition.TypedParts/src/project.json index b7d2d5648281..013edfa3fae9 100644 --- a/src/System.Composition.TypedParts/src/project.json +++ b/src/System.Composition.TypedParts/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Composition/demos/Microsoft.Composition.Demos.ExtendedCollectionImports/project.json b/src/System.Composition/demos/Microsoft.Composition.Demos.ExtendedCollectionImports/project.json index ed297e67ccd6..12b94c687ac5 100644 --- a/src/System.Composition/demos/Microsoft.Composition.Demos.ExtendedCollectionImports/project.json +++ b/src/System.Composition/demos/Microsoft.Composition.Demos.ExtendedCollectionImports/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Linq": "4.0.0", "System.Reflection": "4.0.0" diff --git a/src/System.Composition/perftests/project.json b/src/System.Composition/perftests/project.json index 61400669e85a..aece31d9065f 100644 --- a/src/System.Composition/perftests/project.json +++ b/src/System.Composition/perftests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", - "System.Console": "4.0.0-rc3-23925-00", + "System.Console": "4.0.0-rc3-23925-01", "System.Linq": "4.0.0", "System.Linq.Parallel": "4.0.0", "System.Reflection": "4.0.10", @@ -11,7 +11,7 @@ "System.Runtime.Extensions": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks.Parallel": "4.0.0", - "System.Threading.Thread": "4.0.0-rc3-23925-00" + "System.Threading.Thread": "4.0.0-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/System.Composition/scenarios/TestLibrary/project.json b/src/System.Composition/scenarios/TestLibrary/project.json index efd7a8611608..13bacd647521 100644 --- a/src/System.Composition/scenarios/TestLibrary/project.json +++ b/src/System.Composition/scenarios/TestLibrary/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.0" }, "frameworks": { diff --git a/src/System.Composition/tests/project.json b/src/System.Composition/tests/project.json index 64e8e199d923..d1d01bddce43 100644 --- a/src/System.Composition/tests/project.json +++ b/src/System.Composition/tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Console/src/project.json b/src/System.Console/src/project.json index e2b4f4c29cac..b0a4d1216f6d 100644 --- a/src/System.Console/src/project.json +++ b/src/System.Console/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Console/tests/project.json b/src/System.Console/tests/project.json index 0c5813b4cd5d..b139da1746a9 100644 --- a/src/System.Console/tests/project.json +++ b/src/System.Console/tests/project.json @@ -1,21 +1,21 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Data.Common/src/project.json b/src/System.Data.Common/src/project.json index 1c345663af42..d4bddd04cfc3 100644 --- a/src/System.Data.Common/src/project.json +++ b/src/System.Data.Common/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Data.Common/tests/project.json b/src/System.Data.Common/tests/project.json index 06dee7cb0a61..ba0b2e3ea6f6 100644 --- a/src/System.Data.Common/tests/project.json +++ b/src/System.Data.Common/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Data.SqlClient/src/project.json b/src/System.Data.SqlClient/src/project.json index 848124e9426f..bba1f0727bd6 100644 --- a/src/System.Data.SqlClient/src/project.json +++ b/src/System.Data.SqlClient/src/project.json @@ -3,22 +3,22 @@ "netstandard1.3": { "imports": "dotnet5.4", "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.0", "System.Collections.NonGeneric": "4.0.0", - "System.Data.Common": "4.0.1-rc3-23925-00", + "System.Data.Common": "4.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", "System.Globalization": "4.0.10", "System.IO": "4.0.10", - "System.IO.Pipes": "4.0.0-rc3-23925-00", + "System.IO.Pipes": "4.0.0-rc3-23925-01", "System.Linq": "4.0.0", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", - "System.Net.Security": "4.0.0-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "System.Net.Security": "4.0.0-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.0", "System.Resources.ResourceManager": "4.0.0", @@ -26,18 +26,18 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Security.Principal": "4.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Text.Encoding.CodePages": "4.0.0", "System.Text.Encoding.Extensions": "4.0.10", "System.Text.RegularExpressions": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00", + "System.Threading.Thread": "4.0.0-rc3-23925-01", + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01", "System.Threading.Timer": "4.0.0", "System.Xml.ReaderWriter": "4.0.0" } diff --git a/src/System.Data.SqlClient/tests/FunctionalTests/project.json b/src/System.Data.SqlClient/tests/FunctionalTests/project.json index 8818c37de78d..0664dec4673c 100644 --- a/src/System.Data.SqlClient/tests/FunctionalTests/project.json +++ b/src/System.Data.SqlClient/tests/FunctionalTests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc3-23925-00", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Data.Common": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.CSharp": "4.0.1-rc3-23925-01", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Data.Common": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Data.SqlClient/tests/ManualTests/project.json b/src/System.Data.SqlClient/tests/ManualTests/project.json index cad510402d92..958745059ae2 100644 --- a/src/System.Data.SqlClient/tests/ManualTests/project.json +++ b/src/System.Data.SqlClient/tests/ManualTests/project.json @@ -5,51 +5,51 @@ } }, "dependencies": { - "NETStandard.Library": "1.0.0-rc3-23925-00", - "Microsoft.CSharp": "4.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.ComponentModel": "4.0.1-rc3-23925-00", - "System.ComponentModel.TypeConverter": "4.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Data.Common": "4.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-00", - "System.Dynamic.Runtime": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", + "NETStandard.Library": "1.0.0-rc3-23925-01", + "Microsoft.CSharp": "4.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.ComponentModel": "4.0.1-rc3-23925-01", + "System.ComponentModel.TypeConverter": "4.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Data.Common": "4.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Diagnostics.TextWriterTraceListener": "4.0.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-01", + "System.Dynamic.Runtime": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" } diff --git a/src/System.Diagnostics.Contracts/src/netcore50aot/project.json b/src/System.Diagnostics.Contracts/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Diagnostics.Contracts/src/netcore50aot/project.json +++ b/src/System.Diagnostics.Contracts/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Diagnostics.Contracts/src/project.json b/src/System.Diagnostics.Contracts/src/project.json index 3124d671a84e..d69cc64a3a35 100644 --- a/src/System.Diagnostics.Contracts/src/project.json +++ b/src/System.Diagnostics.Contracts/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.1" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Diagnostics.Contracts/tests/project.json b/src/System.Diagnostics.Contracts/tests/project.json index 836098dba32a..502f6e65d811 100644 --- a/src/System.Diagnostics.Contracts/tests/project.json +++ b/src/System.Diagnostics.Contracts/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Debug/src/project.json b/src/System.Diagnostics.Debug/src/project.json index 43db1e0920f3..94e6df1eb3db 100644 --- a/src/System.Diagnostics.Debug/src/project.json +++ b/src/System.Diagnostics.Debug/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Diagnostics.Debug/tests/project.json b/src/System.Diagnostics.Debug/tests/project.json index 1a0ede2e7853..6d427e19dcbc 100644 --- a/src/System.Diagnostics.Debug/tests/project.json +++ b/src/System.Diagnostics.Debug/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.DiagnosticSource/src/project.json b/src/System.Diagnostics.DiagnosticSource/src/project.json index 4d16d7df1683..f1fef14daa3a 100644 --- a/src/System.Diagnostics.DiagnosticSource/src/project.json +++ b/src/System.Diagnostics.DiagnosticSource/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.0", "System.Runtime": "4.0.0", "System.Threading": "4.0.0", diff --git a/src/System.Diagnostics.DiagnosticSource/tests/project.json b/src/System.Diagnostics.DiagnosticSource/tests/project.json index 1038b43e22af..b53e34682e65 100644 --- a/src/System.Diagnostics.DiagnosticSource/tests/project.json +++ b/src/System.Diagnostics.DiagnosticSource/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.FileVersionInfo/src/project.json b/src/System.Diagnostics.FileVersionInfo/src/project.json index 1cd60dcf569c..1aab2924d78f 100644 --- a/src/System.Diagnostics.FileVersionInfo/src/project.json +++ b/src/System.Diagnostics.FileVersionInfo/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Tools": "4.0.0", "System.Globalization": "4.0.10", "System.IO": "4.0.10", diff --git a/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/project.json b/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/project.json index aca7e214af6e..3086ff15b450 100644 --- a/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/project.json +++ b/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.TestAssembly/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Runtime": "4.1.0-rc3-23925-00" + "System.Runtime": "4.1.0-rc3-23925-01" }, "frameworks": { "netstandard1.0": {} diff --git a/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/project.json b/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/project.json index 1c87c15401f5..0ced4d514e38 100644 --- a/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/project.json +++ b/src/System.Diagnostics.FileVersionInfo/tests/System.Diagnostics.FileVersionInfo.Tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Process/src/project.json b/src/System.Diagnostics.Process/src/project.json index f52d066657b9..b71ebabc723f 100644 --- a/src/System.Diagnostics.Process/src/project.json +++ b/src/System.Diagnostics.Process/src/project.json @@ -12,8 +12,8 @@ "System.Text.Encoding.Extensions": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00", + "System.Threading.Thread": "4.0.0-rc3-23925-01", + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Globalization": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", @@ -22,7 +22,7 @@ "System.IO.FileSystem.Primitives": "4.0.0", "System.Collections": "4.0.10", "Microsoft.Win32.Primitives": "4.0.0", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00" + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.5" diff --git a/src/System.Diagnostics.Process/tests/project.json b/src/System.Diagnostics.Process/tests/project.json index 69ade0976046..b97b5de5f362 100644 --- a/src/System.Diagnostics.Process/tests/project.json +++ b/src/System.Diagnostics.Process/tests/project.json @@ -1,28 +1,28 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Process/tests/win/project.json b/src/System.Diagnostics.Process/tests/win/project.json index 186841075c84..d1c181ac1633 100644 --- a/src/System.Diagnostics.Process/tests/win/project.json +++ b/src/System.Diagnostics.Process/tests/win/project.json @@ -1,29 +1,29 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.StackTrace/src/project.json b/src/System.Diagnostics.StackTrace/src/project.json index 43db1e0920f3..94e6df1eb3db 100644 --- a/src/System.Diagnostics.StackTrace/src/project.json +++ b/src/System.Diagnostics.StackTrace/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Diagnostics.TextWriterTraceListener/ref/project.json b/src/System.Diagnostics.TextWriterTraceListener/ref/project.json index 04467aec0735..56f4f8917992 100644 --- a/src/System.Diagnostics.TextWriterTraceListener/ref/project.json +++ b/src/System.Diagnostics.TextWriterTraceListener/ref/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-00", + "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-01", "System.IO": "4.0.0", "System.Runtime": "4.0.0" }, diff --git a/src/System.Diagnostics.TextWriterTraceListener/src/project.json b/src/System.Diagnostics.TextWriterTraceListener/src/project.json index bd3fd5b00407..e03ea285f3af 100644 --- a/src/System.Diagnostics.TextWriterTraceListener/src/project.json +++ b/src/System.Diagnostics.TextWriterTraceListener/src/project.json @@ -2,9 +2,9 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Tools": "4.0.0", - "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-00", + "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-01", "System.Globalization": "4.0.10", "System.IO": "4.0.10", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Diagnostics.TextWriterTraceListener/tests/project.json b/src/System.Diagnostics.TextWriterTraceListener/tests/project.json index 01ebfc8bb876..901b03538ab1 100644 --- a/src/System.Diagnostics.TextWriterTraceListener/tests/project.json +++ b/src/System.Diagnostics.TextWriterTraceListener/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.TraceSource": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Tools/src/project.json b/src/System.Diagnostics.Tools/src/project.json index 4036de34ed22..431fb6a2b3fd 100644 --- a/src/System.Diagnostics.Tools/src/project.json +++ b/src/System.Diagnostics.Tools/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -15,7 +15,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Diagnostics.Tools/tests/project.json b/src/System.Diagnostics.Tools/tests/project.json index 72d18b96109a..8253c93cf7a2 100644 --- a/src/System.Diagnostics.Tools/tests/project.json +++ b/src/System.Diagnostics.Tools/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.TraceSource/src/project.json b/src/System.Diagnostics.TraceSource/src/project.json index a5a9d03a1b51..366e383cdb19 100644 --- a/src/System.Diagnostics.TraceSource/src/project.json +++ b/src/System.Diagnostics.TraceSource/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Diagnostics.TraceSource/tests/project.json b/src/System.Diagnostics.TraceSource/tests/project.json index bdb53d4bc0ac..a31f45ca3e02 100644 --- a/src/System.Diagnostics.TraceSource/tests/project.json +++ b/src/System.Diagnostics.TraceSource/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Tracing/src/project.json b/src/System.Diagnostics.Tracing/src/project.json index d773c1601953..bc70ba43ebc2 100644 --- a/src/System.Diagnostics.Tracing/src/project.json +++ b/src/System.Diagnostics.Tracing/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -11,7 +11,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10.0", "System.Diagnostics.Contracts": "4.0.0.0", "System.Diagnostics.Debug": "4.0.0.0", diff --git a/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/project.json b/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/project.json index 9d1791e2b5ae..ff2c17671a95 100644 --- a/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/project.json +++ b/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/project.json @@ -1,15 +1,15 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Globalization.Calendars": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Globalization.Calendars": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Diagnostics.Tracing/tests/project.json b/src/System.Diagnostics.Tracing/tests/project.json index 3cd2449bd3c2..4276d7d964bf 100644 --- a/src/System.Diagnostics.Tracing/tests/project.json +++ b/src/System.Diagnostics.Tracing/tests/project.json @@ -1,21 +1,21 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Drawing.Primitives/src/project.json b/src/System.Drawing.Primitives/src/project.json index 0482c2089666..a689fcaadeb4 100644 --- a/src/System.Drawing.Primitives/src/project.json +++ b/src/System.Drawing.Primitives/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", "System.Runtime": "4.0.0", "System.Runtime.Extensions": "4.0.0" }, diff --git a/src/System.Drawing.Primitives/tests/project.json b/src/System.Drawing.Primitives/tests/project.json index 44c66a556711..e1af979aa706 100644 --- a/src/System.Drawing.Primitives/tests/project.json +++ b/src/System.Drawing.Primitives/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Dynamic.Runtime/src/netcore50/project.json b/src/System.Dynamic.Runtime/src/netcore50/project.json index 3c4a58bc21a3..81613347967e 100644 --- a/src/System.Dynamic.Runtime/src/netcore50/project.json +++ b/src/System.Dynamic.Runtime/src/netcore50/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Dynamic.Runtime/src/project.json b/src/System.Dynamic.Runtime/src/project.json index f9721b481efb..691fcb750a93 100644 --- a/src/System.Dynamic.Runtime/src/project.json +++ b/src/System.Dynamic.Runtime/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Dynamic.Runtime/tests/project.json b/src/System.Dynamic.Runtime/tests/project.json index a6d9f0359375..baf752ef2f5f 100644 --- a/src/System.Dynamic.Runtime/tests/project.json +++ b/src/System.Dynamic.Runtime/tests/project.json @@ -1,23 +1,23 @@ { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc3-23925-00", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.CSharp": "4.0.1-rc3-23925-01", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Globalization.Calendars/src/netcore50aot/project.json b/src/System.Globalization.Calendars/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Globalization.Calendars/src/netcore50aot/project.json +++ b/src/System.Globalization.Calendars/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Globalization.Calendars/src/project.json b/src/System.Globalization.Calendars/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Globalization.Calendars/src/project.json +++ b/src/System.Globalization.Calendars/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Globalization.Calendars/tests/project.json b/src/System.Globalization.Calendars/tests/project.json index 62867991fc04..5ffa753a5971 100644 --- a/src/System.Globalization.Calendars/tests/project.json +++ b/src/System.Globalization.Calendars/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Globalization.Calendars": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Globalization.Calendars": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Globalization.Extensions/tests/project.json b/src/System.Globalization.Extensions/tests/project.json index 3797522f7869..2ab3ef80f6f8 100644 --- a/src/System.Globalization.Extensions/tests/project.json +++ b/src/System.Globalization.Extensions/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization.Extensions": "4.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization.Extensions": "4.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Globalization/src/netcore50aot/project.json b/src/System.Globalization/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Globalization/src/netcore50aot/project.json +++ b/src/System.Globalization/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Globalization/src/project.json b/src/System.Globalization/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Globalization/src/project.json +++ b/src/System.Globalization/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoAll.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoAll.cs index 126b9edea6d5..041b137e90f2 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoAll.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoAll.cs @@ -2,13 +2,8 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Collections; using System.Collections.Generic; using System.Text; -using System.Threading; -using System.Threading.Tasks; -using System.Globalization; using System.Runtime.InteropServices; using Xunit; diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoCalendar.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoCalendar.cs index 98720564fd8b..498317de1b58 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoCalendar.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoCalendar.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests @@ -11,12 +9,12 @@ namespace System.Globalization.Tests public class CultureInfoCalendar { [Theory] - [InlineData("en-US", "System.Globalization.GregorianCalendar")] - [InlineData("th-TH", "System.Globalization.ThaiBuddhistCalendar")] - public void TestDefaultCalendar(string locale, string defaultCalendarName) + [InlineData("en-US", typeof(GregorianCalendar))] + [InlineData("th-TH", typeof(ThaiBuddhistCalendar))] + public void Calendar(string locale, Type expected) { CultureInfo cultureInfo = new CultureInfo(locale); - Assert.Equal(defaultCalendarName, cultureInfo.Calendar.ToString()); + Assert.IsType(expected, cultureInfo.Calendar); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoClone.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoClone.cs index 5935a8bc0a99..55dcaf576a8b 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoClone.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoClone.cs @@ -2,39 +2,28 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoClone { - [Fact] - public void TestClone1() + public static IEnumerable Clone_TestData() { - CultureInfo myCultureInfo = new CultureInfo("fr-FR"); - CultureInfo myClone = myCultureInfo.Clone() as CultureInfo; - Assert.True(myClone.Equals(myCultureInfo)); - Assert.NotSame(myClone, myCultureInfo); + yield return new object[] { new CultureInfo(CultureInfo.InvariantCulture.Name) }; + yield return new object[] { CultureInfo.InvariantCulture }; + yield return new object[] { new CultureInfo("fr-FR") }; + yield return new object[] { new CultureInfo("en") }; } - [Fact] - public void TestClone2() + [Theory] + [MemberData(nameof(Clone_TestData))] + public void Clone(CultureInfo culture) { - CultureInfo myCultureInfo = new CultureInfo("en"); - CultureInfo myClone = myCultureInfo.Clone() as CultureInfo; - Assert.True(myClone.Equals(myCultureInfo)); - Assert.NotSame(myClone, myCultureInfo); - } - - [Fact] - public void TestClone3() - { - CultureInfo myTestCulture = CultureInfo.InvariantCulture; - CultureInfo myClone = myTestCulture.Clone() as CultureInfo; - Assert.True(myClone.Equals(myTestCulture)); - Assert.NotSame(myClone, myTestCulture); + CultureInfo clone = (CultureInfo)culture.Clone(); + Assert.Equal(culture, clone); + Assert.NotSame(clone, culture); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoCompareInfo.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoCompareInfo.cs index 64895300b4f0..49095b8e4473 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoCompareInfo.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoCompareInfo.cs @@ -2,49 +2,35 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { public class CultureInfoCompareInfo { - [Fact] - public void TestEsES() + [Theory] + [InlineData("es-ES", "llegar", "lugar", -1)] + public void CompareInfo_Compare(string name, string string1, string string2, int expected) { - CultureInfo myCIintl = new CultureInfo("es-ES"); - string compareString1 = "llegar"; - string compareString2 = "lugar"; - Assert.True(myCIintl.CompareInfo.Compare(compareString1, compareString2) < 0); + CultureInfo culture = new CultureInfo(name); + Assert.Equal(expected, Math.Sign(culture.CompareInfo.Compare(string1, string2))); } [Fact] [ActiveIssue(5463, PlatformID.AnyUnix)] - public void TestEsESTraditional() - { - CultureInfo myCItrad = new CultureInfo("es-ES_tradnl"); - string compareString1 = "llegar"; - string compareString2 = "lugar"; - Assert.True(myCItrad.CompareInfo.Compare(compareString1, compareString2) > 0); - } - - [Fact] - public void TestCompareInfoName() + public void CompareInfo_EsESTraditional() { - string expectedName = "en-US"; - CultureInfo myCultureInfo = new CultureInfo(expectedName); - CompareInfo myCompareInfo = myCultureInfo.CompareInfo; - Assert.True(myCompareInfo.Name.Equals(expectedName, StringComparison.OrdinalIgnoreCase)); + // TOOD: Once #5463 is fixed, combine this into the InlineData for CompareInfo_Compare + CompareInfo_Compare("es-ES_tradnl", "llegar", "lugar", 1); } - [Fact] - public void TestCompareInfoNameWithInvariant() + [Theory] + [InlineData("")] + [InlineData("en-US")] + public void CompareInfo_Name(string name) { - string expectedName = ""; - CultureInfo myCultureInfo = new CultureInfo(expectedName); - CompareInfo myCompareInfo = myCultureInfo.CompareInfo; - Assert.True(myCompareInfo.Name.Equals(expectedName, StringComparison.OrdinalIgnoreCase)); + CultureInfo culture = new CultureInfo(name); + Assert.Equal(name, culture.CompareInfo.Name); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoConstructor2.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoConstructor2.cs deleted file mode 100644 index c7a868f0e8f0..000000000000 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoConstructor2.cs +++ /dev/null @@ -1,53 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -namespace System.Globalization.Tests -{ - public class CultureInfoConstructor2 - { - [Theory] - [InlineData("")] - [InlineData("en")] - [InlineData("de-DE")] - [InlineData("de-DE_phoneb")] - public void TestDiffCulture(string localeName) - { - CultureInfo myCulture = new CultureInfo(localeName); - } - - [PlatformSpecific(PlatformID.AnyUnix)] //todo: Win10 also has these semantics - [InlineData("en-US-CUSTOM")] - [InlineData("xx-XX")] - public void TestCustomCulture(string localeName) - { - CultureInfo myCulture = new CultureInfo(localeName); - } - - [PlatformSpecific(PlatformID.Windows)] //todo: remove this test for Win10, as it should work with TestCustomCulture test above - [InlineData("en-US-CUSTOM")] - [InlineData("xx-XX")] - public void TestCustomCultureWindows(string localeName) - { - Assert.Throws(() => new CultureInfo(localeName)); - } - - [Fact] - public void TestNullCulture() - { - Assert.Throws(() => new CultureInfo(null)); - } - - [Theory] - [InlineData("NotAValidCulture")] - [InlineData("en-US@x=1")] // don't support ICU keywords - public void TestInvalidCulture(string cultureName) - { - Assert.Throws(() => new CultureInfo(cultureName)); - } - } -} diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoCtor.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoCtor.cs new file mode 100644 index 000000000000..f1e5f1a582f0 --- /dev/null +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoCtor.cs @@ -0,0 +1,51 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. + +using System.Collections.Generic; +using Xunit; + +namespace System.Globalization.Tests +{ + public class CultureInfoConstructor + { + public static IEnumerable Ctor_String_TestData() + { + yield return new object[] { "", new string[] { "" } }; + yield return new object[] { "en", new string[] { "en" } }; + yield return new object[] { "de-DE", new string[] { "de-DE" } }; + yield return new object[] { "de-DE_phoneb", new string[] { "de-DE", "de-DE_phoneb" } }; + yield return new object[] { CultureInfo.CurrentCulture.Name, new string[] { CultureInfo.CurrentCulture.Name } }; + + if (!PlatformDetection.IsWindows || PlatformDetection.WindowsVersion >= 10) + { + yield return new object[] { "en-US-CUSTOM", new string[] { "en-US-CUSTOM", "en-US-custom" } }; + yield return new object[] { "xx-XX", new string[] { "xx-XX" } }; + } + } + + [Theory] + [MemberData(nameof(Ctor_String_TestData))] + public void Ctor_String(string name, string[] expectedNames) + { + CultureInfo culture = new CultureInfo(name); + Assert.Contains(culture.Name, expectedNames); + Assert.Equal(name, culture.ToString(), ignoreCase: true); + } + + [Fact] + public void Ctor_String_Invalid() + { + Assert.Throws("name", () => new CultureInfo(null)); // Name is null + Assert.Throws(() => new CultureInfo("en-US@x=1")); // Name doesn't support ICU keywords + Assert.Throws(() => new CultureInfo("NotAValidCulture")); // Name is invalid + + if (PlatformDetection.IsWindows && PlatformDetection.WindowsVersion < 10) + { + Assert.Throws(() => new CultureInfo("no-such-culture")); + Assert.Throws(() => new CultureInfo("en-US-CUSTOM")); + Assert.Throws(() => new CultureInfo("xx-XX")); + } + } + } +} diff --git a/src/System.Globalization/tests/CultureInfo/CurrentCulture.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoCurrentCulture.cs similarity index 88% rename from src/System.Globalization/tests/CultureInfo/CurrentCulture.cs rename to src/System.Globalization/tests/CultureInfo/CultureInfoCurrentCulture.cs index 39576e3a3a94..47cd99d0afbc 100644 --- a/src/System.Globalization/tests/CultureInfo/CurrentCulture.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoCurrentCulture.cs @@ -2,18 +2,16 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { - public class Test + public class DateTimeFormatInfoCurrentCultureTests { [Fact] - public void TestCurrentCulture() + public void CurrentCulture() { - // run all tests in one method to avoid multi-threading issues + // Run all tests in one method to avoid multi-threading issues CultureInfo defaultCulture = CultureInfo.CurrentCulture; Assert.NotEqual(CultureInfo.InvariantCulture, defaultCulture); @@ -36,9 +34,9 @@ public void TestCurrentCulture() } [Fact] - public void TestCurrentUICulture() + public void CurrentUICulture() { - // run all tests in one method to avoid multi-threading issues + // Run all tests in one method to avoid multi-threading issues CultureInfo defaultUICulture = CultureInfo.CurrentUICulture; Assert.NotEqual(CultureInfo.InvariantCulture, defaultUICulture); diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs index a54696d1dc4b..7f683f4d6379 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoDateTimeFormat.cs @@ -2,76 +2,54 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; -using System.Runtime.InteropServices; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoDateTimeFormat { - [Fact] - public void PosTest1() + public static IEnumerable DateTimeFormatInfo_Set_TestData() { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - DateTimeFormatInfo myDateTimeFormat = new DateTimeFormatInfo(); - myDateTimeFormat.AMDesignator = "a.m."; - myDateTimeFormat.MonthDayPattern = "MMMM-dd"; - myDateTimeFormat.ShortTimePattern = "HH|mm"; - myCultureInfo.DateTimeFormat = myDateTimeFormat; - Assert.Equal("a.m.", myCultureInfo.DateTimeFormat.AMDesignator); - Assert.Equal("MMMM-dd", myCultureInfo.DateTimeFormat.MonthDayPattern); - Assert.Equal("HH|mm", myCultureInfo.DateTimeFormat.ShortTimePattern); - } - - [Fact] - public void PosTest2() - { - CultureInfo myCultureInfo = new CultureInfo("fr"); - myCultureInfo.DateTimeFormat.AMDesignator = "a.m."; - Assert.Equal("a.m.", myCultureInfo.DateTimeFormat.AMDesignator); - - myCultureInfo.DateTimeFormat.MonthDayPattern = "MMMM-dd"; - Assert.Equal("MMMM-dd", myCultureInfo.DateTimeFormat.MonthDayPattern); - - myCultureInfo.DateTimeFormat.ShortTimePattern = "HH|mm"; - Assert.Equal("HH|mm", myCultureInfo.DateTimeFormat.ShortTimePattern); + DateTimeFormatInfo customDateTimeFormatInfo1 = new DateTimeFormatInfo(); + customDateTimeFormatInfo1.AMDesignator = "a.m."; + customDateTimeFormatInfo1.MonthDayPattern = "MMMM-dd"; + customDateTimeFormatInfo1.ShortTimePattern = "HH|mm"; + yield return new object[] { "en-US", customDateTimeFormatInfo1 }; + + DateTimeFormatInfo customDateTimeFormatInfo2 = new DateTimeFormatInfo(); + customDateTimeFormatInfo2.LongTimePattern = "H:mm:ss"; + yield return new object[] { "fi-FI", customDateTimeFormatInfo2 }; } [Theory] - [InlineData("fi-FI")] - public void TestLongTimePatternLocale2(string locale) + [MemberData(nameof(DateTimeFormatInfo_Set_TestData))] + public void DateTimeFormatInfo_Set(string name, DateTimeFormatInfo newDateTimeFormatInfo) { - CultureInfo myTestCulture = new CultureInfo(locale); - DateTimeFormatInfo myDateTimeFormat = new DateTimeFormatInfo(); - myDateTimeFormat.LongTimePattern = "H:mm:ss"; - myTestCulture.DateTimeFormat = myDateTimeFormat; - Assert.Equal("H:mm:ss", myTestCulture.DateTimeFormat.LongTimePattern); + CultureInfo culture = new CultureInfo(name); + culture.DateTimeFormat = newDateTimeFormatInfo; + Assert.Equal(newDateTimeFormatInfo, culture.DateTimeFormat); } [Fact] - public void NegTest1() + public void DateTimeFormatInfo_Set_Properties() { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.Throws(() => - { - DateTimeFormatInfo myDateTimeFormat = null; - myCultureInfo.DateTimeFormat = myDateTimeFormat; - }); + CultureInfo culture = new CultureInfo("fr"); + culture.DateTimeFormat.AMDesignator = "a.m."; + Assert.Equal("a.m.", culture.DateTimeFormat.AMDesignator); + + culture.DateTimeFormat.MonthDayPattern = "MMMM-dd"; + Assert.Equal("MMMM-dd", culture.DateTimeFormat.MonthDayPattern); + + culture.DateTimeFormat.ShortTimePattern = "HH|mm"; + Assert.Equal("HH|mm", culture.DateTimeFormat.ShortTimePattern); } [Fact] - public void NegTest2() + public void DateTimeFormat_Set_Invalid() { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; // InvariantCulture is a Read-Only culture - Assert.True(myCultureInfo.IsReadOnly); - DateTimeFormatInfo myDateTimeFormat = new DateTimeFormatInfo(); - myDateTimeFormat.AMDesignator = "a.m."; - Assert.Throws(() => - { - myCultureInfo.DateTimeFormat = myDateTimeFormat; - }); + Assert.Throws("value", () => new CultureInfo("en-US").DateTimeFormat = null); // Value is null + Assert.Throws(() => CultureInfo.InvariantCulture.DateTimeFormat = new DateTimeFormatInfo()); // DateTimeFormatInfo.InvariantInfo is read only } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoEnglishName.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoEnglishName.cs index f255e2a5f825..ca74fcbbcd11 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoEnglishName.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoEnglishName.cs @@ -2,30 +2,25 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoEnglishName { - [Fact] - public void PosTest1() + public static IEnumerable EnglishName_TestData() { - CultureInfo ci = CultureInfo.CurrentCulture; - - string inFactenglish = ci.EnglishName; - string excepectedName = new CultureInfo(ci.Name).EnglishName; - Assert.Equal(excepectedName, inFactenglish); + yield return new object[] { CultureInfo.CurrentCulture.Name, CultureInfo.CurrentCulture.EnglishName }; + yield return new object[] { "en-US", "English (United States)" }; + yield return new object[] { "fr-FR", "French (France)" }; } [Theory] - [InlineData("en-US", "English (United States)")] - [InlineData("fr-FR", "French (France)")] - public void TestEnglishNameLocale(string locale, string expected) + [MemberData(nameof(EnglishName_TestData))] + public void EnglishName(string name, string expected) { - CultureInfo myTestCulture = new CultureInfo(locale); + CultureInfo myTestCulture = new CultureInfo(name); Assert.Equal(expected, myTestCulture.EnglishName); } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoEquals.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoEquals.cs index d44f80090b5c..291e5d61920f 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoEquals.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoEquals.cs @@ -2,74 +2,33 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoEquals { - [Fact] - public void TestClone() + public static IEnumerable Equals_TestData() { - CultureInfo myCultureInfo = new CultureInfo("fr-FR"); - CultureInfo myClone = myCultureInfo.Clone() as CultureInfo; - Assert.True(myClone.Equals(myCultureInfo)); - } + CultureInfo frFRCulture = new CultureInfo("fr-FR"); + yield return new object[] { frFRCulture, frFRCulture.Clone(), true }; + yield return new object[] { frFRCulture, frFRCulture, true }; + yield return new object[] { new CultureInfo("en"), new CultureInfo("en"), true }; + yield return new object[] { new CultureInfo("en-US"), new CultureInfo("en-US"), true }; + yield return new object[] { CultureInfo.InvariantCulture, CultureInfo.InvariantCulture, true }; + yield return new object[] { CultureInfo.InvariantCulture, new CultureInfo(""), true }; - [Fact] - public void TestEqualCultureName() - { - CultureInfo myCultureInfo = new CultureInfo("en"); - CultureInfo myCultureInfo1 = new CultureInfo("en"); - Assert.True(myCultureInfo1.Equals(myCultureInfo)); - } - - [Fact] - public void TestInvariantCulture() - { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - CultureInfo myCultureInfo1 = CultureInfo.InvariantCulture; - Assert.True(myCultureInfo.Equals(myCultureInfo1)); - } - - [Fact] - public void TestEqualNameAndCultureIdentifier() - { - CultureInfo myCultureInfo = new CultureInfo("en"); - CultureInfo myCultureInfo1 = new CultureInfo("en-US"); - Assert.False(myCultureInfo1.Equals(myCultureInfo)); - } - - [Fact] - public void TestSameCultureInfo() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.True(myCultureInfo.Equals(myCultureInfo)); - } - - [Fact] - public void TestNull() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.False(myCultureInfo.Equals(null)); - } - - [Fact] - public void TestEqualCultureIdentifier() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - CultureInfo myCultureInfo1 = new CultureInfo("en-US"); - Assert.True(myCultureInfo1.Equals(myCultureInfo)); + yield return new object[] { new CultureInfo("en"), new CultureInfo("en-US"), false }; + yield return new object[] { new CultureInfo("en-US"), new CultureInfo("fr-FR"), false }; + yield return new object[] { new CultureInfo("en-US"), null, false }; } - [Fact] - public void TestUnequal() + [Theory] + [MemberData(nameof(Equals_TestData))] + public void Equals(CultureInfo culture, object value, bool expected) { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - CultureInfo myCultureInfo1 = new CultureInfo("fr-FR"); - Assert.False(myCultureInfo1.Equals(myCultureInfo)); + Assert.Equal(expected, culture.Equals(value)); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoGetFormat.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoGetFormat.cs index bbf3750acece..78e1bbaca8b7 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoGetFormat.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoGetFormat.cs @@ -2,67 +2,27 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { public class CultureInfoGetFormat { - [Fact] - public void PosTest1() + [Theory] + [InlineData(typeof(NumberFormatInfo), typeof(NumberFormatInfo))] + [InlineData(typeof(DateTimeFormatInfo), typeof(DateTimeFormatInfo))] + [InlineData(typeof(string), null)] + public void GetFormat(Type formatType, Type expectedFormatType) { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.True(myCultureInfo is IFormatProvider); - Assert.True(myCultureInfo.GetFormat(typeof(NumberFormatInfo)) is NumberFormatInfo); - } - - [Fact] - public void PosTest2() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.True(myCultureInfo is IFormatProvider); - Assert.True(myCultureInfo.GetFormat(typeof(DateTimeFormatInfo)) is DateTimeFormatInfo); - } - - [Fact] - public void PosTest3() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.True(myCultureInfo is IFormatProvider); - Assert.Null(myCultureInfo.GetFormat(typeof(string))); - } - - [Fact] - public void PosTest4() - { - TestClass myInstance = new TestClass(); - Assert.True(myInstance is IFormatProvider); - Assert.True(myInstance.GetFormat(typeof(TestClass1)) is TestClass1); - } - } - - public class TestClass : ICustomFormatter, IFormatProvider - { - public string Format(string format, object arg, IFormatProvider formatProvider) - { - return "SuccessFormat"; - } - - public object GetFormat(Type formatType) - { - if (formatType == typeof(TestClass1)) - return new TestClass1(); + object format = new CultureInfo("en-US").GetFormat(formatType); + if (expectedFormatType == null) + { + Assert.Null(format); + } else - return null; - } - } - public class TestClass1 : IFormatProvider - { - public object GetFormat(Type formatType) - { - return new TestClass1(); + { + Assert.Equal(expectedFormatType, format.GetType()); + } } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoGetHashCode.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoGetHashCode.cs index 27f2e9425351..4a920e548ad1 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoGetHashCode.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoGetHashCode.cs @@ -2,45 +2,21 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { public class CultureInfoGetHashCode { - [Fact] - public void PosTest1() + [Theory] + [InlineData("en-US")] + [InlineData("en")] + [InlineData("")] + public void GetHashCode(string name) { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - - // the only guarantee that can be made about HashCodes is that they will be the same across calls - int actualValue = myCultureInfo.GetHashCode(); - int expectedValue = myCultureInfo.GetHashCode(); - Assert.Equal(actualValue, expectedValue); - } - - [Fact] - public void PosTest2() - { - CultureInfo myCultureInfo = new CultureInfo("en"); - - // the only guarantee that can be made about HashCodes is that they will be the same across calls - int actualValue = myCultureInfo.GetHashCode(); - int expectedValue = myCultureInfo.GetHashCode(); - Assert.Equal(actualValue, expectedValue); - } - - [Fact] - public void PosTest3() - { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - - // the only guarantee that can be made about HashCodes is that they will be the same across calls - int actualValue = myCultureInfo.GetHashCode(); - int expectedValue = myCultureInfo.GetHashCode(); - Assert.Equal(actualValue, expectedValue); + // The only guarantee that can be made about HashCodes is that they will be the same across calls + CultureInfo culture = new CultureInfo(name); + Assert.Equal(culture.GetHashCode(), culture.GetHashCode()); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoInvariantCulture.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoInvariantCulture.cs deleted file mode 100644 index 61c2514a8a1c..000000000000 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoInvariantCulture.cs +++ /dev/null @@ -1,21 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -namespace System.Globalization.Tests -{ - public class CultureInfoInvariantCulture - { - [Fact] - public void PosTest1() - { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - CultureInfo myExpectedCultureInfo = new CultureInfo(""); - Assert.True(myCultureInfo.Equals(myExpectedCultureInfo)); - } - } -} diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoIsNeutralCulture.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoIsNeutralCulture.cs index d509872e517e..6d76cd153628 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoIsNeutralCulture.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoIsNeutralCulture.cs @@ -2,33 +2,26 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoIsNeutralCulture { - [Fact] - public void PosTest1() + public static IEnumerable IsNeutralCulture_TestData() { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - Assert.False(myCultureInfo.IsNeutralCulture); + yield return new object[] { new CultureInfo(CultureInfo.InvariantCulture.Name), false }; + yield return new object[] { CultureInfo.InvariantCulture, false }; + yield return new object[] { new CultureInfo("fr-FR"), false }; + yield return new object[] { new CultureInfo("fr"), true }; } - [Fact] - public void PosTest2() + [Theory] + [MemberData(nameof(IsNeutralCulture_TestData))] + public void IsNeutralCulture(CultureInfo culture, bool expected) { - CultureInfo myCultureInfo = new CultureInfo("fr"); - Assert.True(myCultureInfo.IsNeutralCulture); - } - - [Fact] - public void PosTest3() - { - CultureInfo myCultureInfo = new CultureInfo("fr-FR"); - Assert.False(myCultureInfo.IsNeutralCulture); + Assert.Equal(expected, culture.IsNeutralCulture); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoIsReadOnly.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoIsReadOnly.cs deleted file mode 100644 index 1c352a005a6c..000000000000 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoIsReadOnly.cs +++ /dev/null @@ -1,42 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -namespace System.Globalization.Tests -{ - public class CultureInfoIsReadOnly - { - [Fact] - public void PosTest1() - { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - Assert.True(myCultureInfo.IsReadOnly); - } - - [Fact] - public void PosTest2() - { - CultureInfo myCultureInfo = new CultureInfo("fr"); - Assert.False(myCultureInfo.IsReadOnly); - } - - [Fact] - public void PosTest3() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.False(myCultureInfo.IsReadOnly); - } - - [Fact] - public void PosTest4() - { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - myCultureInfo = CultureInfo.ReadOnly(myCultureInfo); - Assert.True(myCultureInfo.IsReadOnly); - } - } -} diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoName.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoName.cs deleted file mode 100644 index e61d1ce9bfed..000000000000 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoName.cs +++ /dev/null @@ -1,22 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -namespace System.Globalization.Tests -{ - public class CultureInfoName - { - [Fact] - public void PosTest1() - { - CultureInfo ci = CultureInfo.CurrentCulture; - string inFactName = ci.Name; - string excepectedName = new CultureInfo(ci.Name).Name; - Assert.Equal(excepectedName, inFactName); - } - } -} diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoNativeName.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoNativeName.cs index 69ed1cb5b84e..2fca73aef7e6 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoNativeName.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoNativeName.cs @@ -2,32 +2,26 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoNativeName { - [Fact] - public void PosTest1() + public static IEnumerable NativeName_TestData() { - CultureInfo ci = CultureInfo.CurrentCulture; - { - string inFactName = ci.NativeName; - string excepectedName = new CultureInfo(ci.Name).NativeName; - Assert.Equal(excepectedName, inFactName); - } + yield return new object[] { CultureInfo.CurrentCulture.Name, CultureInfo.CurrentCulture.NativeName }; + yield return new object[] { "en-US", "English (United States)" }; + yield return new object[] { "en-CA", "English (Canada)" }; } [Theory] - [InlineData("en-US", "English (United States)")] - [InlineData("en-CA", "English (Canada)")] - public void TestNativeNameLocale(string locale, string expected) + [MemberData(nameof(NativeName_TestData))] + public void EnglishName(string name, string expected) { - CultureInfo myTestCulture = new CultureInfo(locale); - Assert.Equal(expected, myTestCulture.NativeName); + CultureInfo myTestCulture = new CultureInfo(name); + Assert.Equal(expected, myTestCulture.EnglishName); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoParent.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoParent.cs index 170b16021423..227c7c8b3f98 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoParent.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoParent.cs @@ -2,40 +2,24 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { public class CultureInfoParent { - [Fact] - public void PosTest1() - { - CultureInfo myExpectParentCulture = new CultureInfo("en"); - CultureInfo myTestCulture = new CultureInfo("en-us"); - Assert.Equal(myTestCulture.Parent, myExpectParentCulture); - } - - [Fact] - public void PosTest2() - { - CultureInfo myTestCulture = new CultureInfo("en"); - CultureInfo myExpectParent = CultureInfo.InvariantCulture; - Assert.Equal(myTestCulture.Parent, myExpectParent); - } - - [Fact] - public void PosTest3() + [Theory] + [InlineData("en-US", "en")] + [InlineData("en", "")] + [InlineData("", "")] + public void Parent(string name, string expectedParentName) { - CultureInfo myExpectParent1 = new CultureInfo(""); - CultureInfo myTestCulture = CultureInfo.InvariantCulture; - Assert.Equal(myTestCulture.Parent, myExpectParent1); + CultureInfo culture = new CultureInfo(name); + Assert.Equal(new CultureInfo(expectedParentName), culture.Parent); } [Fact] - public void PosTest4() + public void Parent_ParentChain() { CultureInfo myExpectParentCulture = new CultureInfo("uz-Cyrl-UZ"); Assert.Equal("uz-Cyrl", myExpectParentCulture.Parent.Name); diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoReadOnly.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoReadOnly.cs index 1da77f1f5a55..f5ca95eac86c 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoReadOnly.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoReadOnly.cs @@ -2,39 +2,29 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class CultureInfoReadOnly { - [Fact] - public void PosTest1() + public static IEnumerable ReadOnly_TestData() { - CultureInfo myCultureInfo = new CultureInfo("en-US"); - Assert.False(myCultureInfo.IsReadOnly); - myCultureInfo = CultureInfo.ReadOnly(myCultureInfo); - Assert.True(myCultureInfo.IsReadOnly); + yield return new object[] { CultureInfo.InvariantCulture, true }; + yield return new object[] { new CultureInfo("en"), false }; + yield return new object[] { new CultureInfo("fr"), false }; + yield return new object[] { new CultureInfo("en-US"), false }; } - [Fact] - public void PosTest2() + [Theory] + [MemberData(nameof(ReadOnly_TestData))] + public void ReadOnly(CultureInfo culture, bool expected) { - CultureInfo myCultureInfo = new CultureInfo("en"); - Assert.False(myCultureInfo.IsReadOnly); - myCultureInfo = CultureInfo.ReadOnly(myCultureInfo); - Assert.True(myCultureInfo.IsReadOnly); - } + Assert.Equal(expected, culture.IsReadOnly); - [Fact] - public void PosTest3() - { - CultureInfo myCultureInfo = CultureInfo.InvariantCulture; - Assert.True(myCultureInfo.IsReadOnly); - myCultureInfo = CultureInfo.ReadOnly(myCultureInfo); - Assert.True(myCultureInfo.IsReadOnly); + CultureInfo readOnlyCulture = CultureInfo.ReadOnly(culture); + Assert.True(readOnlyCulture.IsReadOnly); } } } diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoToString.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoToString.cs deleted file mode 100644 index 9f3a4a5b2466..000000000000 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoToString.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -namespace System.Globalization.Tests -{ - public class CultureInfoToString - { - [Fact] - public void PosTest1() - { - string expectName = "en-US"; - CultureInfo myCultureInfo = new CultureInfo(expectName); - Assert.Equal(expectName, myCultureInfo.ToString()); - } - - [Fact] - public void PosTest2() - { - string expectName = "en"; - CultureInfo myCultureInfo = new CultureInfo(expectName); - Assert.Equal(expectName, myCultureInfo.ToString()); - } - - [Fact] - public void PosTest3() - { - string expectName = ""; - CultureInfo myCultureInfo = new CultureInfo(expectName); - Assert.Equal(expectName, myCultureInfo.ToString()); - } - } -} diff --git a/src/System.Globalization/tests/CultureInfo/CultureInfoTwoLetterISOLanguageName.cs b/src/System.Globalization/tests/CultureInfo/CultureInfoTwoLetterISOLanguageName.cs index 4429d6fceb89..0381de94f1ce 100644 --- a/src/System.Globalization/tests/CultureInfo/CultureInfoTwoLetterISOLanguageName.cs +++ b/src/System.Globalization/tests/CultureInfo/CultureInfoTwoLetterISOLanguageName.cs @@ -2,36 +2,19 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests { public class CultureInfoTwoLetterISOLanguageName { - [Fact] - public void PosTest1() + [Theory] + [InlineData("de-DE", "de")] + [InlineData("en", "en")] + [InlineData("", "iv")] + public void TwoLetterISOLanguageName(string name, string expected) { - CultureInfo myCultureInfo = new CultureInfo("de-DE"); - string expectedstring = "de"; - Assert.Equal(myCultureInfo.TwoLetterISOLanguageName, expectedstring); - } - - [Fact] - public void PosTest2() - { - CultureInfo myCultureInfo = new CultureInfo("en"); - string expectedstring = "en"; - Assert.Equal(myCultureInfo.TwoLetterISOLanguageName, expectedstring); - } - - [Fact] - public void PosTest3() - { - CultureInfo myTestCulture = CultureInfo.InvariantCulture; - string expectedstring = "iv"; - Assert.Equal(myTestCulture.TwoLetterISOLanguageName, expectedstring); + Assert.Equal(expected, new CultureInfo(name).TwoLetterISOLanguageName); } } } diff --git a/src/System.Globalization/tests/CultureNotFoundException/CultureNotFoundExceptionTests.cs b/src/System.Globalization/tests/CultureNotFoundException/CultureNotFoundExceptionTests.cs index 95092c5ef9f6..297ce1933eee 100644 --- a/src/System.Globalization/tests/CultureNotFoundException/CultureNotFoundExceptionTests.cs +++ b/src/System.Globalization/tests/CultureNotFoundException/CultureNotFoundExceptionTests.cs @@ -2,8 +2,6 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Globalization; using Xunit; namespace System.Globalization.Tests @@ -11,43 +9,60 @@ namespace System.Globalization.Tests public class CultureNotFoundExceptionTests { [Fact] - public void TestMessage() + public void Ctor_String() { - CultureNotFoundException cnf = new CultureNotFoundException("this is a test string"); - Assert.Equal("this is a test string", cnf.Message); + string message = "this is a test string"; + CultureNotFoundException cultureNotFoundException = new CultureNotFoundException(message); + + Assert.Equal(message, cultureNotFoundException.Message); } [Fact] - public void TestInnerExceptionMessage() + public void Ctor_String_Exception() { - CultureNotFoundException cnf = new CultureNotFoundException("this is a test string", new Exception("inner exception string")); + string message = "this is a test string"; + Exception innerException = new Exception("inner exception string"); + CultureNotFoundException cultureNotFoundException = new CultureNotFoundException(message, innerException); - Assert.Equal("this is a test string", cnf.Message); - Assert.Equal("inner exception string", cnf.InnerException.Message); + Assert.Equal(message, cultureNotFoundException.Message); + Assert.Same(innerException, cultureNotFoundException.InnerException); } [Fact] - public void TestParamName() + public void Ctor_String_String() { - CultureNotFoundException cnf = new CultureNotFoundException("aNameOfAParam", "this is a test string"); - Assert.Equal("this is a test string" + System.Environment.NewLine +"Parameter name: aNameOfAParam", cnf.Message); + string paramName = "nameOfParam"; + string message = "this is a test string"; + CultureNotFoundException cultureNotFoundException = new CultureNotFoundException(paramName, message); + + Assert.Equal(paramName, cultureNotFoundException.ParamName); + Assert.NotEmpty(cultureNotFoundException.Message); } [Fact] - public void TestInvalidCultureName1() + public void Ctor_String_String_Exception() { - CultureNotFoundException cnf = new CultureNotFoundException("this is a test string", "abcd", new Exception("inner exception string")); - Assert.Equal("this is a test string" + System.Environment.NewLine + "abcd is an invalid culture identifier.", cnf.Message); - Assert.Equal("inner exception string", cnf.InnerException.Message); - Assert.Equal("abcd", cnf.InvalidCultureName); + string message = "this is a test string"; + string invalidCultureName = "abcd"; + Exception innerException = new Exception("inner exception string"); + CultureNotFoundException cultureNotFoundException = new CultureNotFoundException(message, invalidCultureName, innerException); + + Assert.NotEmpty(cultureNotFoundException.Message); + Assert.Equal(invalidCultureName, cultureNotFoundException.InvalidCultureName); + Assert.Same(innerException, cultureNotFoundException.InnerException); } [Fact] - public void TestInvalidCultureName2() + public void Ctor_String_String_String() { - CultureNotFoundException cnf = new CultureNotFoundException("aNameOfAParam", "abcd", "this is a test string"); - Assert.Equal("this is a test string" + System.Environment.NewLine + "Parameter name: aNameOfAParam" + System.Environment.NewLine + "abcd is an invalid culture identifier.", cnf.Message); - Assert.Equal("abcd", cnf.InvalidCultureName); + string paramName = "nameOfParam"; + string invalidCultureName = "abcd"; + string message = "this is a test string"; + CultureNotFoundException cultureNotFoundException = new CultureNotFoundException(paramName, invalidCultureName, message); + + Assert.Equal(paramName, cultureNotFoundException.ParamName); + Assert.Equal(invalidCultureName, cultureNotFoundException.InvalidCultureName); + Assert.NotEmpty(cultureNotFoundException.Message); } } } diff --git a/src/System.Globalization/tests/System.Globalization.Tests.csproj b/src/System.Globalization/tests/System.Globalization.Tests.csproj index 617b4421da1e..6cb29f566627 100644 --- a/src/System.Globalization/tests/System.Globalization.Tests.csproj +++ b/src/System.Globalization/tests/System.Globalization.Tests.csproj @@ -46,27 +46,22 @@ - - + - - - - - + diff --git a/src/System.Globalization/tests/TextInfo.cs b/src/System.Globalization/tests/TextInfo.cs deleted file mode 100644 index 94f13f21250b..000000000000 --- a/src/System.Globalization/tests/TextInfo.cs +++ /dev/null @@ -1,170 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Globalization; -using Xunit; - -public class TextInfoTests -{ - [Theory] - [InlineData("")] - [InlineData("en-US")] - [InlineData("fr")] - public static void ToUpper(string localeName) - { - TextInfo ti = new CultureInfo(localeName).TextInfo; - - Assert.Equal('A', ti.ToUpper('a')); - Assert.Equal("ABC", ti.ToUpper("abc")); - Assert.Equal('A', ti.ToUpper('A')); - Assert.Equal("ABC", ti.ToUpper("ABC")); - - Assert.Equal("THIS IS A LONGER TEST CASE", ti.ToUpper("this is a longer test case")); - Assert.Equal("THIS IS A LONGER MIXED CASE TEST CASE", ti.ToUpper("this Is A LONGER mIXEd casE test case")); - - Assert.Equal("THIS \t HAS \t SOME \t TABS", ti.ToUpper("this \t HaS \t somE \t TABS")); - - Assert.Equal('1', ti.ToUpper('1')); - Assert.Equal("123", ti.ToUpper("123")); - - Assert.Equal("EMBEDDED\0NULL\0BYTE\0", ti.ToUpper("embedded\0NuLL\0Byte\0")); - - // LATIN SMALL LETTER O WITH ACUTE, which has an upper case variant. - Assert.Equal('\u00D3', ti.ToUpper('\u00F3')); - Assert.Equal("\u00D3", ti.ToUpper("\u00F3")); - - // SNOWMAN, which does not have an upper case variant. - Assert.Equal('\u2603', ti.ToUpper('\u2603')); - Assert.Equal("\u2603", ti.ToUpper("\u2603")); - - if (PlatformDetection.IsWindows7) - Assert.Equal("\U00010428", ti.ToUpper("\U00010428")); - else - Assert.Equal("\U00010400", ti.ToUpper("\U00010428")); // DESERT SMALL LETTER LONG I has an upperc case variant. - - // RAINBOW (outside the BMP and does not case) - Assert.Equal("\U0001F308", ti.ToLower("\U0001F308")); - - // These are cases where we have invalid UTF-16 in a string (mismatched surrogate pairs). They should be - // unchanged by casing. - Assert.Equal("BE CAREFUL, \uD83C\uD83C, THIS ONE IS TRICKY", ti.ToUpper("be careful, \uD83C\uD83C, this one is tricky")); - Assert.Equal("BE CAREFUL, \uDF08\uD83C, THIS ONE IS TRICKY", ti.ToUpper("be careful, \uDF08\uD83C, this one is tricky")); - Assert.Equal("BE CAREFUL, \uDF08\uDF08, THIS ONE IS TRICKY", ti.ToUpper("be careful, \uDF08\uDF08, this one is tricky")); - - Assert.Throws("str", () => ti.ToUpper(null)); - } - - [Theory] - [InlineData("")] - [InlineData("en-US")] - [InlineData("fr")] - public static void ToLower(string localeName) - { - TextInfo ti = new CultureInfo(localeName).TextInfo; - - Assert.Equal('a', ti.ToLower('A')); - Assert.Equal("abc", ti.ToLower("ABC")); - Assert.Equal('a', ti.ToLower('a')); - Assert.Equal("abc", ti.ToLower("abc")); - - Assert.Equal("this is a longer test case", ti.ToLower("THIS IS A LONGER TEST CASE")); - Assert.Equal("this is a longer mixed case test case", ti.ToLower("this Is A LONGER mIXEd casE test case")); - - Assert.Equal("this \t has \t some \t tabs", ti.ToLower("THIS \t hAs \t SOMe \t tabs")); - - Assert.Equal('1', ti.ToLower('1')); - Assert.Equal("123", ti.ToLower("123")); - - Assert.Equal("embedded\0null\0byte\0", ti.ToLower("EMBEDDED\0NuLL\0Byte\0")); - - // LATIN CAPITAL LETTER O WITH ACUTE, which has a lower case variant. - Assert.Equal('\u00F3', ti.ToLower('\u00D3')); - Assert.Equal("\u00F3", ti.ToLower("\u00D3")); - - // SNOWMAN, which does not have a lower case variant. - Assert.Equal('\u2603', ti.ToLower('\u2603')); - Assert.Equal("\u2603", ti.ToLower("\u2603")); - - if (PlatformDetection.IsWindows7) - Assert.Equal("\U00010400", ti.ToLower("\U00010400")); - else - Assert.Equal("\U00010428", ti.ToLower("\U00010400")); // DESERT CAPITAL LETTER LONG I has a lower case variant. - - // RAINBOW (outside the BMP and does not case) - Assert.Equal("\U0001F308", ti.ToLower("\U0001F308")); - - // These are cases where we have invalid UTF-16 in a string (mismatched surrogate pairs). They should be - // unchanged by casing. - Assert.Equal("be careful, \uD83C\uD83C, this one is tricky", ti.ToLower("BE CAREFUL, \uD83C\uD83C, THIS ONE IS TRICKY")); - Assert.Equal("be careful, \uDF08\uD83C, this one is tricky", ti.ToLower("BE CAREFUL, \uDF08\uD83C, THIS ONE IS TRICKY")); - Assert.Equal("be careful, \uDF08\uDF08, this one is tricky", ti.ToLower("BE CAREFUL, \uDF08\uDF08, THIS ONE IS TRICKY")); - - Assert.Throws("str", () => ti.ToLower(null)); - } - - [Theory] - [InlineData("tr")] - [InlineData("tr-TR")] - [InlineData("az")] - [InlineData("az-Latn-AZ")] - public static void TurkishICasing(string localeName) - { - TextInfo ti = new CultureInfo(localeName).TextInfo; - - Assert.Equal('i', ti.ToLower('\u0130')); - Assert.Equal("i", ti.ToLower("\u0130")); - - Assert.Equal('\u0130', ti.ToUpper('i')); - Assert.Equal("\u0130", ti.ToUpper("i")); - - Assert.Equal('\u0131', ti.ToLower('I')); - Assert.Equal("\u0131", ti.ToLower("I")); - - Assert.Equal('I', ti.ToUpper('\u0131')); - Assert.Equal("I", ti.ToUpper("\u0131")); - } - - [Theory] - [InlineData("")] - [InlineData("en-US")] - [InlineData("fr-FR")] - public static void NoUnicodeSpecialCases(string localeName) - { - // Unicode defines some codepoints which expand into multiple codepoints - // when cased (see SpecialCasing.txt from UNIDATA for some examples). We have never done - // these sorts of expansions, since it would cause string lengths to change when cased, - // which is non-intuitive. In addition, there are some context sensitive mappings which - // we also don't preform. - - TextInfo ti = new CultureInfo(localeName).TextInfo; - - // es-zed does not case to SS when uppercased. - Assert.Equal("\u00DF", ti.ToUpper("\u00DF")); - - // Ligatures do not expand when cased. - Assert.Equal("\uFB00", ti.ToUpper("\uFB00")); - - // Precomposed character with no uppercase variant, we don't want to "decompose" this - // as part of casing. - Assert.Equal("\u0149", ti.ToUpper("\u0149")); - - // Greek Capital Letter Sigma (does not to case to U+03C2 with "final sigma" rule). - Assert.Equal("\u03C3", ti.ToLower("\u03A3")); - } - - [Fact] - [PlatformSpecific(PlatformID.AnyUnix)] - public static void EnUsPosixIsNotATurkishCasingLocale() - { - // ICU has special tailoring for the en-US-POSIX locale which treats "i" and "I" as different letters - // instead of two letters with a case difference during collation. Make sure this doesn't confuse our - // casing implementation, which uses collation to understand if we need to do Turkish casing or not. - - TextInfo ti = new CultureInfo("en-US-POSIX").TextInfo; - - Assert.Equal('I', ti.ToUpper('i')); - Assert.Equal('i', ti.ToLower('I')); - } -} diff --git a/src/System.Globalization/tests/TextInfo/TextInfoToLower.cs b/src/System.Globalization/tests/TextInfo/TextInfoToLower.cs index d7fa9a51da22..4d31bddd1e57 100644 --- a/src/System.Globalization/tests/TextInfo/TextInfoToLower.cs +++ b/src/System.Globalization/tests/TextInfo/TextInfoToLower.cs @@ -2,30 +2,79 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class TextInfoToLower { + public static IEnumerable ToLower_TestData() + { + foreach (string cultureName in new string[] { "", "en-US", "fr", "fr-FR" }) + { + yield return new object[] { cultureName, "", "" }; + + yield return new object[] { cultureName, "A", "a" }; + yield return new object[] { cultureName, "a", "a" }; + yield return new object[] { cultureName, "ABC", "abc" }; + yield return new object[] { cultureName, "abc", "abc" }; + + yield return new object[] { cultureName, "1", "1" }; + yield return new object[] { cultureName, "123", "123" }; + yield return new object[] { cultureName, "!", "!" }; + + yield return new object[] { cultureName, "HELLOWOR!LD123", "hellowor!ld123" }; + yield return new object[] { cultureName, "HelloWor!ld123", "hellowor!ld123" }; + yield return new object[] { cultureName, "Hello\n\0World\u0009!", "hello\n\0world\t!" }; + + yield return new object[] { cultureName, "THIS IS A LONGER TEST CASE", "this is a longer test case" }; + yield return new object[] { cultureName, "this Is A LONGER mIXEd casE test case", "this is a longer mixed case test case" }; + + yield return new object[] { cultureName, "THIS \t hAs \t SOMe \t tabs", "this \t has \t some \t tabs" }; + yield return new object[] { cultureName, "EMBEDDED\0NuLL\0Byte\0", "embedded\0null\0byte\0" }; + + // LATIN CAPITAL LETTER O WITH ACUTE, which has a lower case variant. + yield return new object[] { cultureName, "\u00D3", "\u00F3" }; + + // SNOWMAN, which does not have a lower case variant. + yield return new object[] { cultureName, "\u2603", "\u2603" }; + + // DESERT CAPITAL LETTER LONG I has a lower case variant (but not on Windows 7). + yield return new object[] { cultureName, "\U00010400", PlatformDetection.IsWindows7 ? "\U00010400" : "\U00010428" }; + + // RAINBOW (outside the BMP and does not case) + yield return new object[] { cultureName, "\U0001F308", "\U0001F308" }; + + // Unicode defines some codepoints which expand into multiple codepoints + // when cased (see SpecialCasing.txt from UNIDATA for some examples). We have never done + // these sorts of expansions, since it would cause string lengths to change when cased, + // which is non-intuitive. In addition, there are some context sensitive mappings which + // we also don't preform. + // Greek Capital Letter Sigma (does not to case to U+03C2 with "final sigma" rule). + yield return new object[] { cultureName, "\u03A3", "\u03C3" }; + } + + foreach (string cultureName in new string[] { "tr", "tr-TR", "az", "az-Latn-AZ" }) + { + yield return new object[] { cultureName, "\u0130", "i" }; + yield return new object[] { cultureName, "i", "i" }; + yield return new object[] { cultureName, "I", "\u0131" }; + yield return new object[] { cultureName, "HI!", "h\u0131!" }; + yield return new object[] { cultureName, "HI\n\0H\u0130\t!", "h\u0131\n\0hi\u0009!" }; + } + + // ICU has special tailoring for the en-US-POSIX locale which treats "i" and "I" as different letters + // instead of two letters with a case difference during collation. Make sure this doesn't confuse our + // casing implementation, which uses collation to understand if we need to do Turkish casing or not. + if (!PlatformDetection.IsWindows) + { + yield return new object[] { "en-US-POSIX", "I", "i" }; + } + } + [Theory] - [InlineData("en-US", "A", "a")] - [InlineData("en-US", "a", "a")] - [InlineData("en-US", "1", "1")] - [InlineData("en-US", "9", "9")] - [InlineData("fr-FR", "G", "g")] - [InlineData("fr-FR", "g", "g")] - [InlineData("tr-TR", "\u0130", "i")] - [InlineData("tr-TR", "I", "\u0131")] - [InlineData("tr-TR", "i", "i")] - [InlineData("en-US", "HELLOWORLD!", "helloworld!")] - [InlineData("en-US", "HelloWorld123!", "helloworld123!")] - [InlineData("en-US", "", "")] - [InlineData("en-US", "HELLO\n\0WORLD\t!", "hello\n\0world\u0009!")] - [InlineData("fr-FR", "HELLOWORLD!", "helloworld!")] - [InlineData("fr-FR", "HELLO\n\0WORLD\t!", "hello\n\0world\u0009!")] - [InlineData("tr-TR", "HI!", "h\u0131!")] - [InlineData("tr-TR", "HI\n\0H\u0130\t!", "h\u0131\n\0hi\u0009!")] + [MemberData(nameof(ToLower_TestData))] public void ToLower(string name, string str, string expected) { Assert.Equal(expected, new CultureInfo(name).TextInfo.ToLower(str)); @@ -36,9 +85,24 @@ public void ToLower(string name, string str, string expected) } [Fact] - public void ToLower_Null_ThrowsArgumentNullException() + public void ToLower_InvalidSurrogates() + { + // Invalid UTF-16 in a string (mismatched surrogate pairs) should be unchanged. + foreach (string cultureName in new string[] { "", "en-US", "fr" }) + { + ToLower(cultureName, "BE CAREFUL, \uD83C\uD83C, THIS ONE IS TRICKY", "be careful, \uD83C\uD83C, this one is tricky"); + ToLower(cultureName, "BE CAREFUL, \uDF08\uD83C, THIS ONE IS TRICKY", "be careful, \uDF08\uD83C, this one is tricky"); + ToLower(cultureName, "BE CAREFUL, \uDF08\uDF08, THIS ONE IS TRICKY", "be careful, \uDF08\uDF08, this one is tricky"); + } + } + + [Theory] + [InlineData("")] + [InlineData("en-US")] + [InlineData("fr")] + public void ToLower_Null_ThrowsArgumentNullException(string cultureName) { - Assert.Throws(() => new CultureInfo("en-US").TextInfo.ToLower(null)); + Assert.Throws("str", () => new CultureInfo(cultureName).TextInfo.ToLower(null)); } } } diff --git a/src/System.Globalization/tests/TextInfo/TextInfoToUpper.cs b/src/System.Globalization/tests/TextInfo/TextInfoToUpper.cs index b4316a0048f2..da01e9bf728e 100644 --- a/src/System.Globalization/tests/TextInfo/TextInfoToUpper.cs +++ b/src/System.Globalization/tests/TextInfo/TextInfoToUpper.cs @@ -2,29 +2,87 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. +using System.Collections.Generic; using Xunit; namespace System.Globalization.Tests { public class TextInfoToUpper { + public static IEnumerable ToUpper_TestData() + { + foreach (string cultureName in new string[] { "", "en-US", "fr", "fr-FR" }) + { + yield return new object[] { cultureName, "", "" }; + + yield return new object[] { cultureName, "a", "A" }; + yield return new object[] { cultureName, "abc", "ABC" }; + yield return new object[] { cultureName, "A", "A" }; + yield return new object[] { cultureName, "ABC", "ABC" }; + + yield return new object[] { cultureName, "1", "1" }; + yield return new object[] { cultureName, "123", "123" }; + yield return new object[] { cultureName, "!", "!" }; + + yield return new object[] { cultureName, "HelloWor!ld123", "HELLOWOR!LD123" }; + yield return new object[] { cultureName, "HELLOWOR!LD123", "HELLOWOR!LD123" }; + yield return new object[] { cultureName, "Hello\n\0World\u0009!", "HELLO\n\0WORLD\t!" }; + + yield return new object[] { cultureName, "this is a longer test case", "THIS IS A LONGER TEST CASE" }; + yield return new object[] { cultureName, "this Is A LONGER mIXEd casE test case", "THIS IS A LONGER MIXED CASE TEST CASE" }; + yield return new object[] { cultureName, "this \t HaS \t somE \t TABS", "THIS \t HAS \t SOME \t TABS" }; + + yield return new object[] { cultureName, "embedded\0NuLL\0Byte\0", "EMBEDDED\0NULL\0BYTE\0" }; + + // LATIN SMALL LETTER O WITH ACUTE, which has an upper case variant. + yield return new object[] { cultureName, "\u00F3", "\u00D3" }; + + // SNOWMAN, which does not have an upper case variant. + yield return new object[] { cultureName, "\u2603", "\u2603" }; + + // DESERT SMALL LETTER LONG I has an upper case variant (but not on Windows 7). + yield return new object[] { cultureName, "\U00010428", PlatformDetection.IsWindows7 ? "\U00010428" : "\U00010400" }; + + // RAINBOW (outside the BMP and does not case) + yield return new object[] { cultureName, "\U0001F308", "\U0001F308" }; + + // Unicode defines some codepoints which expand into multiple codepoints + // when cased (see SpecialCasing.txt from UNIDATA for some examples). We have never done + // these sorts of expansions, since it would cause string lengths to change when cased, + // which is non-intuitive. In addition, there are some context sensitive mappings which + // we also don't preform. + // es-zed does not case to SS when uppercased. + yield return new object[] { cultureName, "\u00DF", "\u00DF" }; + + // Ligatures do not expand when cased. + yield return new object[] { cultureName, "\uFB00", "\uFB00" }; + + // Precomposed character with no uppercase variant, we don't want to "decompose" this + // as part of casing. + yield return new object[] { cultureName, "\u0149", "\u0149" }; + } + + // Turkish i + foreach (string cultureName in new string[] { "tr", "tr-TR", "az", "az-Latn-AZ" }) + { + yield return new object[] { cultureName, "i", "\u0130" }; + yield return new object[] { cultureName, "\u0130", "\u0130" }; + yield return new object[] { cultureName, "\u0131", "I" }; + yield return new object[] { cultureName, "I", "I" }; + yield return new object[] { cultureName, "H\u0131\n\0Hi\u0009!", "HI\n\0H\u0130\t!" }; + } + + // ICU has special tailoring for the en-US-POSIX locale which treats "i" and "I" as different letters + // instead of two letters with a case difference during collation. Make sure this doesn't confuse our + // casing implementation, which uses collation to understand if we need to do Turkish casing or not. + if (!PlatformDetection.IsWindows) + { + yield return new object[] { "en-US-POSIX", "i", "I" }; + } + } + [Theory] - [InlineData("en-US", "a", "A")] - [InlineData("en-US", "A", "A")] - [InlineData("en-US", "1", "1")] - [InlineData("en-US", "9", "9")] - [InlineData("fr-FR", "g", "G")] - [InlineData("fr-FR", "G", "G")] - [InlineData("tr-TR", "i", "\u0130")] - [InlineData("tr-TR", "\u0130", "\u0130")] - [InlineData("en-US", "HelloWorld!", "HELLOWORLD!")] - [InlineData("en-US", "HELLOWORLD123!", "HELLOWORLD123!")] - [InlineData("en-US", "", "")] - [InlineData("en-US", "Hello\n\0World\u0009!", "HELLO\n\0WORLD\t!")] - [InlineData("fr-FR", "HelloWorld!", "HELLOWORLD!")] - [InlineData("fr-FR", "Hello\n\0World\u0009!", "HELLO\n\0WORLD\t!")] - [InlineData("tr-TR", "H\u0131!", "HI!")] - [InlineData("tr-TR", "H\u0131\n\0Hi\u0009!", "HI\n\0H\u0130\t!")] + [MemberData(nameof(ToUpper_TestData))] public void ToUpper(string name, string str, string expected) { Assert.Equal(expected, new CultureInfo(name).TextInfo.ToUpper(str)); @@ -35,9 +93,24 @@ public void ToUpper(string name, string str, string expected) } [Fact] - public void ToUpper_Null_ThrowsArgumentNullException() + public void ToUpper_InvalidSurrogates() + { + // Invalid UTF-16 in a string (mismatched surrogate pairs) should be unchanged. + foreach (string cultureName in new string[] { "", "en-US", "fr"}) + { + ToUpper(cultureName, "be careful, \uD83C\uD83C, this one is tricky", "BE CAREFUL, \uD83C\uD83C, THIS ONE IS TRICKY"); + ToUpper(cultureName, "be careful, \uDF08\uD83C, this one is tricky", "BE CAREFUL, \uDF08\uD83C, THIS ONE IS TRICKY"); + ToUpper(cultureName, "be careful, \uDF08\uDF08, this one is tricky", "BE CAREFUL, \uDF08\uDF08, THIS ONE IS TRICKY"); + } + } + + [Theory] + [InlineData("")] + [InlineData("en-US")] + [InlineData("fr")] + public void ToUpper_Null_ThrowsArgumentNullException(string cultureName) { - Assert.Throws("str", () => new CultureInfo("en-US").TextInfo.ToUpper(null)); + Assert.Throws("str", () => new CultureInfo(cultureName).TextInfo.ToUpper(null)); } } } diff --git a/src/System.Globalization/tests/project.json b/src/System.Globalization/tests/project.json index 9d1791e2b5ae..ff2c17671a95 100644 --- a/src/System.Globalization/tests/project.json +++ b/src/System.Globalization/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Globalization.Calendars": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Globalization.Calendars": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.Compression.ZipFile/src/project.json b/src/System.IO.Compression.ZipFile/src/project.json index 62b767df4c7e..55ddb00bb2d9 100644 --- a/src/System.IO.Compression.ZipFile/src/project.json +++ b/src/System.IO.Compression.ZipFile/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Buffers": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Buffers": "4.0.0-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.IO.Compression.ZipFile/tests/project.json b/src/System.IO.Compression.ZipFile/tests/project.json index 0ea5675ff6a9..b3d84c9a3461 100644 --- a/src/System.IO.Compression.ZipFile/tests/project.json +++ b/src/System.IO.Compression.ZipFile/tests/project.json @@ -1,24 +1,24 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Buffers": "4.0.0-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Buffers": "4.0.0-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", "System.IO.Compression.TestData": "1.0.1-prerelease", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.Compression/src/project.json b/src/System.IO.Compression/src/project.json index b62e6ec93729..3ffadc03e7fa 100644 --- a/src/System.IO.Compression/src/project.json +++ b/src/System.IO.Compression/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.IO.Compression/tests/project.json b/src/System.IO.Compression/tests/project.json index 058b6b660930..4bd2fe8ed927 100644 --- a/src/System.IO.Compression/tests/project.json +++ b/src/System.IO.Compression/tests/project.json @@ -1,24 +1,24 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", "System.IO.Compression.TestData": "1.0.2-prerelease", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.FileSystem.AccessControl/ref/project.json b/src/System.IO.FileSystem.AccessControl/ref/project.json index ee2b608b6c39..7ae8524ceded 100644 --- a/src/System.IO.FileSystem.AccessControl/ref/project.json +++ b/src/System.IO.FileSystem.AccessControl/ref/project.json @@ -4,8 +4,8 @@ "System.IO.FileSystem": "4.0.0", "System.IO.FileSystem.Primitives": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00" + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.IO.FileSystem.AccessControl/src/project.json b/src/System.IO.FileSystem.AccessControl/src/project.json index 4b3148c1faf5..cffc8ad153e8 100644 --- a/src/System.IO.FileSystem.AccessControl/src/project.json +++ b/src/System.IO.FileSystem.AccessControl/src/project.json @@ -13,9 +13,9 @@ "System.Runtime.Extensions": "4.0.10.0", "System.Runtime.Handles": "4.0.0.0", "System.Runtime.InteropServices": "4.0.20.0", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", "System.Security.Principal": "4.0.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00" + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.IO.FileSystem.AccessControl/tests/project.json b/src/System.IO.FileSystem.AccessControl/tests/project.json index a9c5e497d07f..9c287d237b89 100644 --- a/src/System.IO.FileSystem.AccessControl/tests/project.json +++ b/src/System.IO.FileSystem.AccessControl/tests/project.json @@ -1,23 +1,23 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.FileSystem.DriveInfo/src/project.json b/src/System.IO.FileSystem.DriveInfo/src/project.json index 6d3493cb1924..d59a533ee6de 100644 --- a/src/System.IO.FileSystem.DriveInfo/src/project.json +++ b/src/System.IO.FileSystem.DriveInfo/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.IO.FileSystem.DriveInfo/tests/project.json b/src/System.IO.FileSystem.DriveInfo/tests/project.json index 919debe0bb69..5b964c994569 100644 --- a/src/System.IO.FileSystem.DriveInfo/tests/project.json +++ b/src/System.IO.FileSystem.DriveInfo/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.FileSystem.Primitives/tests/project.json b/src/System.IO.FileSystem.Primitives/tests/project.json index 89d7fa6596b3..4c080e8f783d 100644 --- a/src/System.IO.FileSystem.Primitives/tests/project.json +++ b/src/System.IO.FileSystem.Primitives/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.FileSystem.Watcher/src/project.json b/src/System.IO.FileSystem.Watcher/src/project.json index 01e9f1127542..5884d74141fa 100644 --- a/src/System.IO.FileSystem.Watcher/src/project.json +++ b/src/System.IO.FileSystem.Watcher/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -16,7 +16,7 @@ "System.Runtime.Handles": "4.0.0", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00" + "System.Threading.Thread": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.IO.FileSystem.Watcher/src/win/project.json b/src/System.IO.FileSystem.Watcher/src/win/project.json index d995c880beb6..93273c1d4104 100644 --- a/src/System.IO.FileSystem.Watcher/src/win/project.json +++ b/src/System.IO.FileSystem.Watcher/src/win/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", @@ -16,7 +16,7 @@ "System.Threading": "4.0.10", "System.Threading.Overlapped": "4.0.0", "System.Threading.Tasks": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00" + "System.Threading.Thread": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.IO.FileSystem.Watcher/tests/project.json b/src/System.IO.FileSystem.Watcher/tests/project.json index 3f57529fc94e..2c1aac685276 100644 --- a/src/System.IO.FileSystem.Watcher/tests/project.json +++ b/src/System.IO.FileSystem.Watcher/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.FileSystem/src/netcore50/project.json b/src/System.IO.FileSystem/src/netcore50/project.json index 77380377f059..0a1f77cad4f8 100644 --- a/src/System.IO.FileSystem/src/netcore50/project.json +++ b/src/System.IO.FileSystem/src/netcore50/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -23,7 +23,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Globalization": "4.0.10", "System.Reflection": "4.0.10", diff --git a/src/System.IO.FileSystem/src/project.json b/src/System.IO.FileSystem/src/project.json index 83c3bfe64288..1e9829fbc81e 100644 --- a/src/System.IO.FileSystem/src/project.json +++ b/src/System.IO.FileSystem/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.IO.FileSystem/src/win/project.json b/src/System.IO.FileSystem/src/win/project.json index df919bb67a4c..ae95764111a2 100644 --- a/src/System.IO.FileSystem/src/win/project.json +++ b/src/System.IO.FileSystem/src/win/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.IO.FileSystem/tests/project.json b/src/System.IO.FileSystem/tests/project.json index 915f513c9521..07e2020d832e 100644 --- a/src/System.IO.FileSystem/tests/project.json +++ b/src/System.IO.FileSystem/tests/project.json @@ -1,27 +1,27 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.IO.Pipes": "4.0.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.IO.Pipes": "4.0.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.IsolatedStorage/src/project.json b/src/System.IO.IsolatedStorage/src/project.json index 3f8bea19e20a..df7678c5e33d 100644 --- a/src/System.IO.IsolatedStorage/src/project.json +++ b/src/System.IO.IsolatedStorage/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.IO.MemoryMappedFiles/src/project.json b/src/System.IO.MemoryMappedFiles/src/project.json index 076929d11452..0ad1645d3393 100644 --- a/src/System.IO.MemoryMappedFiles/src/project.json +++ b/src/System.IO.MemoryMappedFiles/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", "System.IO": "4.0.10", diff --git a/src/System.IO.MemoryMappedFiles/tests/project.json b/src/System.IO.MemoryMappedFiles/tests/project.json index f58e14d01498..852605fe8d4e 100644 --- a/src/System.IO.MemoryMappedFiles/tests/project.json +++ b/src/System.IO.MemoryMappedFiles/tests/project.json @@ -1,20 +1,20 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.IO.UnmanagedMemoryStream": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.IO.UnmanagedMemoryStream": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.Packaging/tests/project.json b/src/System.IO.Packaging/tests/project.json index d37a64d60325..5664833e4b9d 100644 --- a/src/System.IO.Packaging/tests/project.json +++ b/src/System.IO.Packaging/tests/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", "System.IO.Packaging.TestData": "1.0.0-prerelease", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.Pipes/src/project.json b/src/System.IO.Pipes/src/project.json index 6281f833ebe2..edeff7cf3687 100644 --- a/src/System.IO.Pipes/src/project.json +++ b/src/System.IO.Pipes/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.IO.Pipes/src/unix/project.json b/src/System.IO.Pipes/src/unix/project.json index 236ead95bdb4..ead3a300d471 100644 --- a/src/System.IO.Pipes/src/unix/project.json +++ b/src/System.IO.Pipes/src/unix/project.json @@ -2,14 +2,14 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", "System.IO": "4.0.10", "System.IO.FileSystem.Primitives": "4.0.0", "System.Resources.ResourceManager": "4.0.0", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", "System.Reflection": "4.0.0", "System.Runtime": "4.0.20", diff --git a/src/System.IO.Pipes/src/win/project.json b/src/System.IO.Pipes/src/win/project.json index 562bbb870933..27907b249b6b 100644 --- a/src/System.IO.Pipes/src/win/project.json +++ b/src/System.IO.Pipes/src/win/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.IO.Pipes/tests/project.json b/src/System.IO.Pipes/tests/project.json index 94beb87da1d6..c53cb97b1c95 100644 --- a/src/System.IO.Pipes/tests/project.json +++ b/src/System.IO.Pipes/tests/project.json @@ -1,21 +1,21 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.Pipes/tests/win/project.json b/src/System.IO.Pipes/tests/win/project.json index 3fa4a475c028..eeac3d8c952b 100644 --- a/src/System.IO.Pipes/tests/win/project.json +++ b/src/System.IO.Pipes/tests/win/project.json @@ -1,22 +1,22 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Overlapped": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Overlapped": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO.UnmanagedMemoryStream/src/project.json b/src/System.IO.UnmanagedMemoryStream/src/project.json index 390a518b4cea..95aa35baf70c 100644 --- a/src/System.IO.UnmanagedMemoryStream/src/project.json +++ b/src/System.IO.UnmanagedMemoryStream/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.IO.UnmanagedMemoryStream/tests/project.json b/src/System.IO.UnmanagedMemoryStream/tests/project.json index 858af70b7d10..d77053c4cf39 100644 --- a/src/System.IO.UnmanagedMemoryStream/tests/project.json +++ b/src/System.IO.UnmanagedMemoryStream/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.IO/src/project.json b/src/System.IO/src/project.json index d623b96fcf02..cc7441d19537 100644 --- a/src/System.IO/src/project.json +++ b/src/System.IO/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -11,8 +11,8 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", @@ -33,8 +33,8 @@ "netcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.IO/tests/project.json b/src/System.IO/tests/project.json index 45f0200472d3..a572157cbe37 100644 --- a/src/System.IO/tests/project.json +++ b/src/System.IO/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Linq.Expressions/src/netcore50/project.json b/src/System.Linq.Expressions/src/netcore50/project.json index dae150d5c8a9..a03139cc8742 100644 --- a/src/System.Linq.Expressions/src/netcore50/project.json +++ b/src/System.Linq.Expressions/src/netcore50/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Linq.Expressions/src/project.json b/src/System.Linq.Expressions/src/project.json index 09abfbac9d7a..890a102db66b 100644 --- a/src/System.Linq.Expressions/src/project.json +++ b/src/System.Linq.Expressions/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -30,7 +30,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Linq.Expressions/tests/project.json b/src/System.Linq.Expressions/tests/project.json index e0d2c1eb47de..42b9a2c1ab8d 100644 --- a/src/System.Linq.Expressions/tests/project.json +++ b/src/System.Linq.Expressions/tests/project.json @@ -1,20 +1,20 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Linq.Queryable": "4.0.1-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Linq.Queryable": "4.0.1-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Linq.Parallel/src/project.json b/src/System.Linq.Parallel/src/project.json index 39660786251d..150114aabd8f 100644 --- a/src/System.Linq.Parallel/src/project.json +++ b/src/System.Linq.Parallel/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Linq.Parallel/tests/project.json b/src/System.Linq.Parallel/tests/project.json index 6703afde0033..30dbcf7b89f8 100644 --- a/src/System.Linq.Parallel/tests/project.json +++ b/src/System.Linq.Parallel/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Linq.Queryable/src/project.json b/src/System.Linq.Queryable/src/project.json index a6d966b95fdf..b20b599dcb92 100644 --- a/src/System.Linq.Queryable/src/project.json +++ b/src/System.Linq.Queryable/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Linq": "4.0.0", "System.Linq.Expressions": "4.0.10", diff --git a/src/System.Linq.Queryable/tests/project.json b/src/System.Linq.Queryable/tests/project.json index af3f00456fc8..232148cdba3c 100644 --- a/src/System.Linq.Queryable/tests/project.json +++ b/src/System.Linq.Queryable/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Linq/src/project.json b/src/System.Linq/src/project.json index 3c26e963d307..219129b351ed 100644 --- a/src/System.Linq/src/project.json +++ b/src/System.Linq/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Linq/tests/project.json b/src/System.Linq/tests/project.json index bd144eef385f..07549da375da 100644 --- a/src/System.Linq/tests/project.json +++ b/src/System.Linq/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Http.Rtc/src/netcore50/project.json b/src/System.Net.Http.Rtc/src/netcore50/project.json index 51bf6cafe837..480e73fb8af9 100644 --- a/src/System.Net.Http.Rtc/src/netcore50/project.json +++ b/src/System.Net.Http.Rtc/src/netcore50/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.ObjectModel": "4.0.10", "System.Net.Http": "4.0.0", "System.Runtime": "4.0.20" diff --git a/src/System.Net.Http.WinHttpHandler/ref/project.json b/src/System.Net.Http.WinHttpHandler/ref/project.json index c62c17e48301..c569160270c4 100644 --- a/src/System.Net.Http.WinHttpHandler/ref/project.json +++ b/src/System.Net.Http.WinHttpHandler/ref/project.json @@ -3,7 +3,7 @@ "System.Net.Http": "4.0.0", "System.Net.Primitives": "4.0.10", "System.Runtime": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Threading.Tasks": "4.0.0" }, "frameworks": { diff --git a/src/System.Net.Http.WinHttpHandler/src/project.json b/src/System.Net.Http.WinHttpHandler/src/project.json index 3b80d998b306..f5130e4fde48 100644 --- a/src/System.Net.Http.WinHttpHandler/src/project.json +++ b/src/System.Net.Http.WinHttpHandler/src/project.json @@ -1,20 +1,20 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.0", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01", "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", "System.IO": "4.0.10", - "System.IO.Compression": "4.1.0-rc3-23925-00", + "System.IO.Compression": "4.1.0-rc3-23925-01", "System.Net.Http": "4.0.0", "System.Net.Primitives": "4.0.10", "System.Resources.ResourceManager": "4.0.0", "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.0", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.json b/src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.json index f98f756b947f..613b507f6b50 100644 --- a/src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.json +++ b/src/System.Net.Http.WinHttpHandler/tests/FunctionalTests/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Http": "4.0.1-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Http": "4.0.1-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Http.WinHttpHandler/tests/UnitTests/project.json b/src/System.Net.Http.WinHttpHandler/tests/UnitTests/project.json index 939d661ff22d..9d920dca087f 100644 --- a/src/System.Net.Http.WinHttpHandler/tests/UnitTests/project.json +++ b/src/System.Net.Http.WinHttpHandler/tests/UnitTests/project.json @@ -1,25 +1,25 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Http": "4.0.1-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Http": "4.0.1-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Http/src/netcore50/System/Net/cookie.cs b/src/System.Net.Http/src/netcore50/System/Net/cookie.cs index c9b928250150..c1b51f0d7ce9 100644 --- a/src/System.Net.Http/src/netcore50/System/Net/cookie.cs +++ b/src/System.Net.Http/src/netcore50/System/Net/cookie.cs @@ -5,6 +5,7 @@ using System.Collections; using System.Collections.Generic; using System.Globalization; +using System.Text; using System.Threading; // The NETNative_SystemNetHttp #define is used in some source files to indicate we are compiling classes @@ -221,20 +222,6 @@ public string Domain } } - private string _Domain - { - get - { - return (Plain || m_domain_implicit || (m_domain.Length == 0)) - ? string.Empty - : (SpecialAttributeLiteral - + DomainAttributeName - + EqualsLiteral + (IsQuotedDomain ? "\"" : string.Empty) - + m_domain + (IsQuotedDomain ? "\"" : string.Empty) - ); - } - } - internal bool DomainImplicit { get @@ -325,20 +312,6 @@ public string Path } } - private string _Path - { - get - { - return (Plain || m_path_implicit || (m_path.Length == 0)) - ? string.Empty - : (SpecialAttributeLiteral - + PathAttributeName - + EqualsLiteral - + m_path - ); - } - } - internal bool Plain { get @@ -729,18 +702,6 @@ internal int[] PortList } } - private string _Port - { - get - { - return m_port_implicit ? string.Empty : - (SpecialAttributeLiteral - + PortAttributeName - + ((m_port.Length == 0) ? string.Empty : (EqualsLiteral + m_port)) - ); - } - } - /// /// [To be supplied.] /// @@ -834,18 +795,6 @@ public int Version } } - private string _Version - { - get - { - return (Version == 0) ? string.Empty : - (SpecialAttributeLiteral - + VersionAttributeName - + EqualsLiteral + (IsQuotedVersion ? "\"" : string.Empty) - + m_version.ToString(NumberFormatInfo.InvariantInfo) + (IsQuotedVersion ? "\"" : string.Empty)); - } - } - // methods @@ -897,23 +846,65 @@ public override int GetHashCode() /// public override string ToString() { - string domain = _Domain; - string path = _Path; - string port = _Port; - string version = _Version; - - string result = - ((version.Length == 0) ? string.Empty : (version + SeparatorLiteral)) - + Name + EqualsLiteral + Value - + ((path.Length == 0) ? string.Empty : (SeparatorLiteral + path)) - + ((domain.Length == 0) ? string.Empty : (SeparatorLiteral + domain)) - + ((port.Length == 0) ? string.Empty : (SeparatorLiteral + port)) - ; - if (result == "=") + var sb = new StringBuilder(); + ToString(sb); + return sb.ToString(); + } + + internal void ToString(StringBuilder sb) + { + int beforeLength = sb.Length; + + // Add the Cookie version if necessary. + if (Version != 0) + { + sb.Append(SpecialAttributeLiteral + VersionAttributeName + EqualsLiteral); // const strings + if (IsQuotedVersion) sb.Append('"'); + sb.Append(m_version.ToString(NumberFormatInfo.InvariantInfo)); + if (IsQuotedVersion) sb.Append('"'); + sb.Append(SeparatorLiteral); + } + + // Add the Cookie Name=Value pair. + sb.Append(Name).Append(EqualsLiteral).Append(Value); + + if (!Plain) + { + // Add the Path if necessary. + if (!m_path_implicit && m_path.Length > 0) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + PathAttributeName + EqualsLiteral); // const strings + sb.Append(m_path); + } + + // Add the Domain if necessary. + if (!m_domain_implicit && m_domain.Length > 0) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + DomainAttributeName + EqualsLiteral); // const strings + if (IsQuotedDomain) sb.Append('"'); + sb.Append(m_domain); + if (IsQuotedDomain) sb.Append('"'); + } + } + + // Add the Port if necessary. + if (!m_port_implicit) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + PortAttributeName); // const strings + if (m_port.Length > 0) + { + sb.Append(EqualsLiteral); + sb.Append(m_port); + } + } + + // Check to see whether the only thing we added was "=", and if so, + // remove it so that we leave the StringBuilder unchanged in contents. + int afterLength = sb.Length; + if (afterLength == (1 + beforeLength) && sb[beforeLength] == '=') { - return string.Empty; + sb.Length = beforeLength; } - return result; } internal string ToServerString() diff --git a/src/System.Net.Http/src/netcore50/project.json b/src/System.Net.Http/src/netcore50/project.json index c087eb2b3897..ce6aa3aecbe3 100644 --- a/src/System.Net.Http/src/netcore50/project.json +++ b/src/System.Net.Http/src/netcore50/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00" + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01" }, "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Net.Http/src/project.json b/src/System.Net.Http/src/project.json index 80c7f970dd3d..96506ffed324 100644 --- a/src/System.Net.Http/src/project.json +++ b/src/System.Net.Http/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00" + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { @@ -8,7 +8,7 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", @@ -22,7 +22,7 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.0", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.Http/src/unix/project.json b/src/System.Net.Http/src/unix/project.json index 1465fda75c64..2bca992a02e7 100644 --- a/src/System.Net.Http/src/unix/project.json +++ b/src/System.Net.Http/src/unix/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00" + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.4": { @@ -8,7 +8,7 @@ "dotnet5.5" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", @@ -24,8 +24,8 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.0", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.Http/tests/FunctionalTests/project.json b/src/System.Net.Http/tests/FunctionalTests/project.json index 2b17d3b9347e..ca53cfe92cb7 100644 --- a/src/System.Net.Http/tests/FunctionalTests/project.json +++ b/src/System.Net.Http/tests/FunctionalTests/project.json @@ -1,21 +1,21 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Http/tests/UnitTests/project.json b/src/System.Net.Http/tests/UnitTests/project.json index 6b98fe1e3b30..19ad388a7050 100644 --- a/src/System.Net.Http/tests/UnitTests/project.json +++ b/src/System.Net.Http/tests/UnitTests/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.NameResolution/src/netcore50/project.json b/src/System.Net.NameResolution/src/netcore50/project.json index 4905c0a7349e..c5c653e8b643 100644 --- a/src/System.Net.NameResolution/src/netcore50/project.json +++ b/src/System.Net.NameResolution/src/netcore50/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Net.NameResolution/src/project.json b/src/System.Net.NameResolution/src/project.json index a7b836ed9073..899a78ada061 100644 --- a/src/System.Net.NameResolution/src/project.json +++ b/src/System.Net.NameResolution/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -14,7 +14,7 @@ "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.0" }, diff --git a/src/System.Net.NameResolution/tests/FunctionalTests/project.json b/src/System.Net.NameResolution/tests/FunctionalTests/project.json index 4e757b8ef154..7d5747993c5e 100644 --- a/src/System.Net.NameResolution/tests/FunctionalTests/project.json +++ b/src/System.Net.NameResolution/tests/FunctionalTests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.NameResolution/tests/PalTests/project.json b/src/System.Net.NameResolution/tests/PalTests/project.json index 5d4080f3ad35..8161f4df234c 100644 --- a/src/System.Net.NameResolution/tests/PalTests/project.json +++ b/src/System.Net.NameResolution/tests/PalTests/project.json @@ -1,30 +1,30 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.ComponentModel.EventBasedAsync": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Security.Claims": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.ComponentModel.EventBasedAsync": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Security.Claims": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.NetworkInformation/src/netcore50/project.json b/src/System.Net.NetworkInformation/src/netcore50/project.json index 5058025a3c47..efc46f1448e0 100644 --- a/src/System.Net.NetworkInformation/src/netcore50/project.json +++ b/src/System.Net.NetworkInformation/src/netcore50/project.json @@ -2,12 +2,12 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "Microsoft.Win32.Primitives": "4.0.0", "System.Diagnostics.Tracing": "4.0.20", "System.Linq": "4.0.0", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.NetworkInformation/src/project.json b/src/System.Net.NetworkInformation/src/project.json index 8f4c75cdb78c..b9f4931ccd47 100644 --- a/src/System.Net.NetworkInformation/src/project.json +++ b/src/System.Net.NetworkInformation/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", @@ -12,15 +12,15 @@ "System.IO.FileSystem": "4.0.0", "System.Linq": "4.0.0", "System.Net.Primitives": "4.0.10", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00", + "System.Threading.Thread": "4.0.0-rc3-23925-01", + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01", "System.Threading.Overlapped": "4.0.0" }, "imports": [ diff --git a/src/System.Net.NetworkInformation/tests/FunctionalTests/project.json b/src/System.Net.NetworkInformation/tests/FunctionalTests/project.json index f8a0007c9c87..ead1b0e602a0 100644 --- a/src/System.Net.NetworkInformation/tests/FunctionalTests/project.json +++ b/src/System.Net.NetworkInformation/tests/FunctionalTests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.NetworkInformation/tests/UnitTests/project.json b/src/System.Net.NetworkInformation/tests/UnitTests/project.json index ee5e3b4877b3..355064890be7 100644 --- a/src/System.Net.NetworkInformation/tests/UnitTests/project.json +++ b/src/System.Net.NetworkInformation/tests/UnitTests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Ping/src/project.json b/src/System.Net.Ping/src/project.json index 8c421d5195b5..f5bdaa56e22b 100644 --- a/src/System.Net.Ping/src/project.json +++ b/src/System.Net.Ping/src/project.json @@ -2,16 +2,16 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", "System.Diagnostics.Tracing": "4.0.20", "System.IO.FileSystem": "4.0.0", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", @@ -19,7 +19,7 @@ "System.Runtime.InteropServices": "4.0.20", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00" + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Net.Ping/tests/FunctionalTests/project.json b/src/System.Net.Ping/tests/FunctionalTests/project.json index 9f774915e132..923246d83f29 100644 --- a/src/System.Net.Ping/tests/FunctionalTests/project.json +++ b/src/System.Net.Ping/tests/FunctionalTests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Primitives/src/System.Net.Primitives.csproj b/src/System.Net.Primitives/src/System.Net.Primitives.csproj index d440dc656a23..849cd46b5d78 100644 --- a/src/System.Net.Primitives/src/System.Net.Primitives.csproj +++ b/src/System.Net.Primitives/src/System.Net.Primitives.csproj @@ -91,6 +91,9 @@ Common\System\Net\NetworkInformation\HostInformation.cs + + Common\System\IO\StringBuilderCache.cs + Common\System\Net\Shims\TraceSource.cs diff --git a/src/System.Net.Primitives/src/System/Net/Cookie.cs b/src/System.Net.Primitives/src/System/Net/Cookie.cs index 685216233216..d5f2eca4c752 100644 --- a/src/System.Net.Primitives/src/System/Net/Cookie.cs +++ b/src/System.Net.Primitives/src/System/Net/Cookie.cs @@ -2,10 +2,11 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; +using System.IO; +using System.Text; using System.Threading; // The NETNative_SystemNetHttp #define is used in some source files to indicate we are compiling classes @@ -181,19 +182,6 @@ public string Domain } } - private string _Domain - { - get - { - return (Plain || _domainImplicit || (_domain.Length == 0)) - ? string.Empty - : (SpecialAttributeLiteral - + DomainAttributeName - + EqualsLiteral + (IsQuotedDomain ? "\"" : string.Empty) - + _domain + (IsQuotedDomain ? "\"" : string.Empty)); - } - } - internal bool DomainImplicit { get @@ -272,19 +260,6 @@ public string Path } } - private string _Path - { - get - { - return (Plain || _pathImplicit || (_path.Length == 0)) - ? string.Empty - : (SpecialAttributeLiteral - + PathAttributeName - + EqualsLiteral - + _path); - } - } - internal bool Plain { get @@ -666,17 +641,6 @@ internal int[] PortList } } - private string _Port - { - get - { - return _portImplicit ? string.Empty : - (SpecialAttributeLiteral - + PortAttributeName - + ((_port.Length == 0) ? string.Empty : (EqualsLiteral + _port))); - } - } - public bool Secure { get @@ -763,18 +727,6 @@ public int Version } } - private string _Version - { - get - { - return (Version == 0) ? string.Empty : - (SpecialAttributeLiteral - + VersionAttributeName - + EqualsLiteral + (IsQuotedVersion ? "\"" : string.Empty) - + _version.ToString(NumberFormatInfo.InvariantInfo) + (IsQuotedVersion ? "\"" : string.Empty)); - } - } - public override bool Equals(object comparand) { Cookie other = comparand as Cookie; @@ -794,22 +746,65 @@ public override int GetHashCode() public override string ToString() { - string domain = _Domain; - string path = _Path; - string port = _Port; - string version = _Version; - - string result = - ((version.Length == 0) ? string.Empty : (version + SeparatorLiteral)) - + Name + EqualsLiteral + Value - + ((path.Length == 0) ? string.Empty : (SeparatorLiteral + path)) - + ((domain.Length == 0) ? string.Empty : (SeparatorLiteral + domain)) - + ((port.Length == 0) ? string.Empty : (SeparatorLiteral + port)); - if (result == "=") - { - return string.Empty; - } - return result; + StringBuilder sb = StringBuilderCache.Acquire(); + ToString(sb); + return StringBuilderCache.GetStringAndRelease(sb); + } + + internal void ToString(StringBuilder sb) + { + int beforeLength = sb.Length; + + // Add the Cookie version if necessary. + if (Version != 0) + { + sb.Append(SpecialAttributeLiteral + VersionAttributeName + EqualsLiteral); // const strings + if (IsQuotedVersion) sb.Append('"'); + sb.Append(_version.ToString(NumberFormatInfo.InvariantInfo)); + if (IsQuotedVersion) sb.Append('"'); + sb.Append(SeparatorLiteral); + } + + // Add the Cookie Name=Value pair. + sb.Append(Name).Append(EqualsLiteral).Append(Value); + + if (!Plain) + { + // Add the Path if necessary. + if (!_pathImplicit && _path.Length > 0) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + PathAttributeName + EqualsLiteral); // const strings + sb.Append(_path); + } + + // Add the Domain if necessary. + if (!_domainImplicit && _domain.Length > 0) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + DomainAttributeName + EqualsLiteral); // const strings + if (IsQuotedDomain) sb.Append('"'); + sb.Append(_domain); + if (IsQuotedDomain) sb.Append('"'); + } + } + + // Add the Port if necessary. + if (!_portImplicit) + { + sb.Append(SeparatorLiteral + SpecialAttributeLiteral + PortAttributeName); // const strings + if (_port.Length > 0) + { + sb.Append(EqualsLiteral); + sb.Append(_port); + } + } + + // Check to see whether the only thing we added was "=", and if so, + // remove it so that we leave the StringBuilder unchanged in contents. + int afterLength = sb.Length; + if (afterLength == (1 + beforeLength) && sb[beforeLength] == '=') + { + sb.Length = beforeLength; + } } internal string ToServerString() diff --git a/src/System.Net.Primitives/src/System/Net/CookieContainer.cs b/src/System.Net.Primitives/src/System/Net/CookieContainer.cs index 168158c78aa9..87d38238cdde 100644 --- a/src/System.Net.Primitives/src/System/Net/CookieContainer.cs +++ b/src/System.Net.Primitives/src/System/Net/CookieContainer.cs @@ -2,9 +2,9 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System.Collections; using System.Collections.Generic; using System.Diagnostics; +using System.IO; using System.Net.NetworkInformation; using System.Text; @@ -728,17 +728,17 @@ public CookieCollection GetCookies(Uri uri) { throw new ArgumentNullException(nameof(uri)); } - return InternalGetCookies(uri); + return InternalGetCookies(uri) ?? new CookieCollection(); } internal CookieCollection InternalGetCookies(Uri uri) { bool isSecure = (uri.Scheme == UriScheme.Https); int port = uri.Port; - CookieCollection cookies = new CookieCollection(); + CookieCollection cookies = null; List domainAttributeMatchAnyCookieVariant = new List(); - List domainAttributeMatchOnlyCookieVariantPlain = new List(); + List domainAttributeMatchOnlyCookieVariantPlain = null; string fqdnRemote = uri.Host; @@ -780,6 +780,11 @@ internal CookieCollection InternalGetCookies(Uri uri) { while ((dot < last) && (dot = fqdnRemote.IndexOf('.', dot + 1)) != -1) { + if (domainAttributeMatchOnlyCookieVariantPlain == null) + { + domainAttributeMatchOnlyCookieVariantPlain = new List(); + } + // These candidates can only match CookieVariant.Plain cookies. domainAttributeMatchOnlyCookieVariantPlain.Add(fqdnRemote.Substring(dot)); } @@ -787,13 +792,16 @@ internal CookieCollection InternalGetCookies(Uri uri) } } - BuildCookieCollectionFromDomainMatches(uri, isSecure, port, cookies, domainAttributeMatchAnyCookieVariant, false); - BuildCookieCollectionFromDomainMatches(uri, isSecure, port, cookies, domainAttributeMatchOnlyCookieVariantPlain, true); + BuildCookieCollectionFromDomainMatches(uri, isSecure, port, ref cookies, domainAttributeMatchAnyCookieVariant, false); + if (domainAttributeMatchOnlyCookieVariantPlain != null) + { + BuildCookieCollectionFromDomainMatches(uri, isSecure, port, ref cookies, domainAttributeMatchOnlyCookieVariantPlain, true); + } return cookies; } - private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int port, CookieCollection cookies, List domainAttribute, bool matchOnlyPlainCookie) + private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int port, ref CookieCollection cookies, List domainAttribute, bool matchOnlyPlainCookie) { for (int i = 0; i < domainAttribute.Count; i++) { @@ -819,7 +827,7 @@ private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int CookieCollection cc = pair.Value; cc.TimeStamp(CookieCollection.Stamp.Set); - MergeUpdateCollections(cookies, cc, port, isSecure, matchOnlyPlainCookie); + MergeUpdateCollections(ref cookies, cc, port, isSecure, matchOnlyPlainCookie); if (path == "/") { @@ -840,7 +848,7 @@ private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int if (cc != null) { cc.TimeStamp(CookieCollection.Stamp.Set); - MergeUpdateCollections(cookies, cc, port, isSecure, matchOnlyPlainCookie); + MergeUpdateCollections(ref cookies, cc, port, isSecure, matchOnlyPlainCookie); } } @@ -856,11 +864,11 @@ private void BuildCookieCollectionFromDomainMatches(Uri uri, bool isSecure, int } } - private void MergeUpdateCollections(CookieCollection destination, CookieCollection source, int port, bool isSecure, bool isPlainOnly) + private void MergeUpdateCollections(ref CookieCollection destination, CookieCollection source, int port, bool isSecure, bool isPlainOnly) { lock (source) { - // Cannot use foreach as we going update 'source' + // Cannot use foreach as we are going to update 'source' for (int idx = 0; idx < source.Count; ++idx) { bool to_add = false; @@ -910,6 +918,10 @@ private void MergeUpdateCollections(CookieCollection destination, CookieCollecti // In 'source' are already ordered. // If two same cookies come from different 'source' then they // will follow (not replace) each other. + if (destination == null) + { + destination = new CookieCollection(); + } destination.InternalAdd(cookie, false); } } @@ -930,21 +942,30 @@ public string GetCookieHeader(Uri uri) internal string GetCookieHeader(Uri uri, out string optCookie2) { CookieCollection cookies = InternalGetCookies(uri); + if (cookies == null) + { + optCookie2 = string.Empty; + return string.Empty; + } + string delimiter = string.Empty; - var builder = new StringBuilder(); - foreach (Cookie cookie in cookies) + var builder = StringBuilderCache.Acquire(); + for (int i = 0; i < cookies.Count; i++) { - builder.Append(delimiter).Append(cookie.ToString()); + builder.Append(delimiter); + cookies[i].ToString(builder); + delimiter = "; "; } + optCookie2 = cookies.IsOtherVersionSeen ? (Cookie.SpecialAttributeLiteral + Cookie.VersionAttributeName + Cookie.EqualsLiteral + Cookie.MaxSupportedVersionString) : string.Empty; - return builder.ToString(); + return StringBuilderCache.GetStringAndRelease(builder); } public void SetCookies(Uri uri, string cookieHeader) diff --git a/src/System.Net.Primitives/src/netcore50/project.json b/src/System.Net.Primitives/src/netcore50/project.json index 52797ce1851e..1cf1051e52df 100644 --- a/src/System.Net.Primitives/src/netcore50/project.json +++ b/src/System.Net.Primitives/src/netcore50/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", diff --git a/src/System.Net.Primitives/src/project.json b/src/System.Net.Primitives/src/project.json index 529e35e78a69..efb21bf88428 100644 --- a/src/System.Net.Primitives/src/project.json +++ b/src/System.Net.Primitives/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Net.Primitives/tests/FunctionalTests/project.json b/src/System.Net.Primitives/tests/FunctionalTests/project.json index bee509ed7d4f..7f647d1f1300 100644 --- a/src/System.Net.Primitives/tests/FunctionalTests/project.json +++ b/src/System.Net.Primitives/tests/FunctionalTests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Primitives/tests/PalTests/project.json b/src/System.Net.Primitives/tests/PalTests/project.json index 4e39cbb43ff8..4b09e83949a2 100644 --- a/src/System.Net.Primitives/tests/PalTests/project.json +++ b/src/System.Net.Primitives/tests/PalTests/project.json @@ -1,20 +1,20 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Primitives/tests/UnitTests/System.Net.Primitives.UnitTests.Tests.csproj b/src/System.Net.Primitives/tests/UnitTests/System.Net.Primitives.UnitTests.Tests.csproj index 5c21fb3a05c8..2a9094bedf89 100644 --- a/src/System.Net.Primitives/tests/UnitTests/System.Net.Primitives.UnitTests.Tests.csproj +++ b/src/System.Net.Primitives/tests/UnitTests/System.Net.Primitives.UnitTests.Tests.csproj @@ -88,6 +88,9 @@ ProductionCode\Common\System\Net\UriScheme.cs + + Common\System\IO\StringBuilderCache.cs + ProductionCode\Common\System\Net\Shims\TraceSource.cs diff --git a/src/System.Net.Primitives/tests/UnitTests/project.json b/src/System.Net.Primitives/tests/UnitTests/project.json index 994084224f82..6e156ab59e9f 100644 --- a/src/System.Net.Primitives/tests/UnitTests/project.json +++ b/src/System.Net.Primitives/tests/UnitTests/project.json @@ -1,21 +1,21 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Requests/src/project.json b/src/System.Net.Requests/src/project.json index 992f2bcd089b..bbd80e8f4118 100644 --- a/src/System.Net.Requests/src/project.json +++ b/src/System.Net.Requests/src/project.json @@ -2,12 +2,12 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Tracing": "4.0.0", "System.IO": "4.0.10", - "System.IO.Compression": "4.1.0-rc3-23925-00", + "System.IO.Compression": "4.1.0-rc3-23925-01", "System.Net.Http": "4.0.0", "System.Net.Primitives": "4.0.10", "System.Net.WebHeaderCollection": "4.0.0", diff --git a/src/System.Net.Requests/tests/project.json b/src/System.Net.Requests/tests/project.json index 56937bef96ed..2b216a2981c3 100644 --- a/src/System.Net.Requests/tests/project.json +++ b/src/System.Net.Requests/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO.Compression": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Http": "4.0.1-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Requests": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO.Compression": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Http": "4.0.1-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Requests": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Security/ref/project.json b/src/System.Net.Security/ref/project.json index 1d6d8ff5fc86..ce4002f13afa 100644 --- a/src/System.Net.Security/ref/project.json +++ b/src/System.Net.Security/ref/project.json @@ -4,7 +4,7 @@ "System.Net.Primitives": "4.0.10", "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Security.Principal": "4.0.0", "System.Threading.Tasks": "4.0.0" }, diff --git a/src/System.Net.Security/src/unix/project.json b/src/System.Net.Security/src/unix/project.json index bfa745171344..ad33af5153cf 100644 --- a/src/System.Net.Security/src/unix/project.json +++ b/src/System.Net.Security/src/unix/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -13,14 +13,14 @@ "System.Resources.ResourceManager": "4.0.0", "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Security.Principal": "4.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00" + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01" }, "frameworks": { "netstandard1.4": { diff --git a/src/System.Net.Security/src/win/project.json b/src/System.Net.Security/src/win/project.json index cd19c1f27617..0ad2b2ccbb67 100644 --- a/src/System.Net.Security/src/win/project.json +++ b/src/System.Net.Security/src/win/project.json @@ -5,7 +5,7 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", @@ -17,12 +17,12 @@ "System.Resources.ResourceManager": "4.0.0", "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Security.Principal": "4.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00" + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01" } }, "net46": { diff --git a/src/System.Net.Security/tests/FunctionalTests/unix/project.json b/src/System.Net.Security/tests/FunctionalTests/unix/project.json index f6732731cc34..c3d8cebb07a0 100644 --- a/src/System.Net.Security/tests/FunctionalTests/unix/project.json +++ b/src/System.Net.Security/tests/FunctionalTests/unix/project.json @@ -1,21 +1,21 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Primitives": "4.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Net.TestData": "1.0.0-prerelease", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Security/tests/FunctionalTests/win/project.json b/src/System.Net.Security/tests/FunctionalTests/win/project.json index a6b6f9e81ce7..5bf3092a7e2b 100644 --- a/src/System.Net.Security/tests/FunctionalTests/win/project.json +++ b/src/System.Net.Security/tests/FunctionalTests/win/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Net.TestData": "1.0.0-prerelease", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Security/tests/UnitTests/project.json b/src/System.Net.Security/tests/UnitTests/project.json index e6e0fecaef34..25053fb1b020 100644 --- a/src/System.Net.Security/tests/UnitTests/project.json +++ b/src/System.Net.Security/tests/UnitTests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.Net.Sockets": "4.1.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.Net.Sockets": "4.1.0-rc3-23925-01", "System.Net.TestData": "1.0.0-prerelease", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Sockets/src/netcore50/project.json b/src/System.Net.Sockets/src/netcore50/project.json index 72330b517045..6afd63d56f68 100644 --- a/src/System.Net.Sockets/src/netcore50/project.json +++ b/src/System.Net.Sockets/src/netcore50/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -11,7 +11,7 @@ "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", "System.IO.FileSystem.Primitives": "4.0.0", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", "System.ObjectModel": "4.0.10", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Net.Sockets/src/project.json b/src/System.Net.Sockets/src/project.json index 32a337ab4d4d..0a0ade8bd8ee 100644 --- a/src/System.Net.Sockets/src/project.json +++ b/src/System.Net.Sockets/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tracing": "4.0.20", @@ -10,17 +10,17 @@ "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", "System.IO.FileSystem.Primitives": "4.0.0", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00" + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Net.Sockets/src/win/project.json b/src/System.Net.Sockets/src/win/project.json index fed2cbd0928c..625d65206d31 100644 --- a/src/System.Net.Sockets/src/win/project.json +++ b/src/System.Net.Sockets/src/win/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tracing": "4.0.20", @@ -10,18 +10,18 @@ "System.IO": "4.0.10", "System.IO.FileSystem": "4.0.0", "System.IO.FileSystem.Primitives": "4.0.0", - "System.Net.NameResolution": "4.0.0-rc3-23925-00", + "System.Net.NameResolution": "4.0.0-rc3-23925-01", "System.Net.Primitives": "4.0.10", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Overlapped": "4.0.0", "System.Threading.Tasks": "4.0.10", - "System.Threading.ThreadPool": "4.0.10-rc3-23925-00" + "System.Threading.ThreadPool": "4.0.10-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Net.Sockets/tests/FunctionalTests/project.json b/src/System.Net.Sockets/tests/FunctionalTests/project.json index 9621b4422fa1..f892175cf38a 100644 --- a/src/System.Net.Sockets/tests/FunctionalTests/project.json +++ b/src/System.Net.Sockets/tests/FunctionalTests/project.json @@ -1,21 +1,21 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.Sockets/tests/PerformanceTests/project.json b/src/System.Net.Sockets/tests/PerformanceTests/project.json index adfd6f0f51a5..b213b051ac48 100644 --- a/src/System.Net.Sockets/tests/PerformanceTests/project.json +++ b/src/System.Net.Sockets/tests/PerformanceTests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.Primitives": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.Primitives": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.WebHeaderCollection/src/project.json b/src/System.Net.WebHeaderCollection/src/project.json index 18da905fc668..d9f18d80d858 100644 --- a/src/System.Net.WebHeaderCollection/src/project.json +++ b/src/System.Net.WebHeaderCollection/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Net.WebHeaderCollection/tests/project.json b/src/System.Net.WebHeaderCollection/tests/project.json index ba3d4dc56c5d..90ba76e11285 100644 --- a/src/System.Net.WebHeaderCollection/tests/project.json +++ b/src/System.Net.WebHeaderCollection/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections.Specialized": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections.Specialized": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.WebSockets.Client/ref/project.json b/src/System.Net.WebSockets.Client/ref/project.json index fda1930aca65..476aa4955999 100644 --- a/src/System.Net.WebSockets.Client/ref/project.json +++ b/src/System.Net.WebSockets.Client/ref/project.json @@ -1,9 +1,9 @@ { "dependencies": { "System.Net.Primitives": "4.0.10", - "System.Net.WebSockets": "4.0.0-rc3-23925-00", + "System.Net.WebSockets": "4.0.0-rc3-23925-01", "System.Runtime": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Threading.Tasks": "4.0.0" }, "frameworks": { diff --git a/src/System.Net.WebSockets.Client/src/netcore50/project.json b/src/System.Net.WebSockets.Client/src/netcore50/project.json index aa5f6ca49529..e4d36c44ffe0 100644 --- a/src/System.Net.WebSockets.Client/src/netcore50/project.json +++ b/src/System.Net.WebSockets.Client/src/netcore50/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -11,13 +11,13 @@ "System.Globalization": "4.0.10", "System.Net.Primitives": "4.0.10", "System.Net.WebHeaderCollection": "4.0.0", - "System.Net.WebSockets": "4.0.0-rc3-23925-00", + "System.Net.WebSockets": "4.0.0-rc3-23925-01", "System.ObjectModel": "4.0.10", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.InteropServices.WindowsRuntime": "4.0.0", "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.WebSockets.Client/src/project.json b/src/System.Net.WebSockets.Client/src/project.json index 8f71748c5085..18e60e26c173 100644 --- a/src/System.Net.WebSockets.Client/src/project.json +++ b/src/System.Net.WebSockets.Client/src/project.json @@ -5,7 +5,7 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", @@ -14,11 +14,11 @@ "System.Globalization": "4.0.10", "System.Net.Primitives": "4.0.10", "System.Net.WebHeaderCollection": "4.0.0", - "System.Net.WebSockets": "4.0.0-rc3-23925-00", + "System.Net.WebSockets": "4.0.0-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-00", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.10" diff --git a/src/System.Net.WebSockets.Client/tests/project.json b/src/System.Net.WebSockets.Client/tests/project.json index f597c091d574..a7542312ce50 100644 --- a/src/System.Net.WebSockets.Client/tests/project.json +++ b/src/System.Net.WebSockets.Client/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.WebSockets": "4.0.0-rc3-23925-00", - "System.Net.WebSockets.Client": "4.0.0-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.WebSockets": "4.0.0-rc3-23925-01", + "System.Net.WebSockets.Client": "4.0.0-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Net.WebSockets/src/project.json b/src/System.Net.WebSockets/src/project.json index 6017f6adf3d7..a58cbb9ba9f7 100644 --- a/src/System.Net.WebSockets/src/project.json +++ b/src/System.Net.WebSockets/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Net.WebSockets/tests/project.json b/src/System.Net.WebSockets/tests/project.json index 27653d2ec847..a690acccf491 100644 --- a/src/System.Net.WebSockets/tests/project.json +++ b/src/System.Net.WebSockets/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Net.WebSockets": "4.0.0-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Net.WebSockets": "4.0.0-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Numerics.Vectors.WindowsRuntime/src/project.json b/src/System.Numerics.Vectors.WindowsRuntime/src/project.json index e71ea394c535..474cfd915331 100644 --- a/src/System.Numerics.Vectors.WindowsRuntime/src/project.json +++ b/src/System.Numerics.Vectors.WindowsRuntime/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.ObjectModel": "4.0.10", "System.Numerics.Vectors": "4.1.0", "System.Runtime.WindowsRuntime": "4.0.10" diff --git a/src/System.Numerics.Vectors/tests/project.json b/src/System.Numerics.Vectors/tests/project.json index 54485f4735bd..866f8fdffcf9 100644 --- a/src/System.Numerics.Vectors/tests/project.json +++ b/src/System.Numerics.Vectors/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.CSharp": "4.0.1-rc3-23925-00", + "Microsoft.CSharp": "4.0.1-rc3-23925-01", "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Dynamic.Runtime": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Dynamic.Runtime": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ObjectModel/src/project.json b/src/System.ObjectModel/src/project.json index e8ad65612fc7..eaf34dbe1f7a 100644 --- a/src/System.ObjectModel/src/project.json +++ b/src/System.ObjectModel/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.ObjectModel/tests/project.json b/src/System.ObjectModel/tests/project.json index ea54dd6131e3..e96dad40df56 100644 --- a/src/System.ObjectModel/tests/project.json +++ b/src/System.ObjectModel/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Private.DataContractSerialization/src/netcore50aot/project.json b/src/System.Private.DataContractSerialization/src/netcore50aot/project.json index 0b3d6a1da802..87d498e4edf4 100644 --- a/src/System.Private.DataContractSerialization/src/netcore50aot/project.json +++ b/src/System.Private.DataContractSerialization/src/netcore50aot/project.json @@ -2,8 +2,8 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", @@ -20,7 +20,7 @@ "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", "System.Runtime.WindowsRuntime": "4.0.10", "System.Text.Encoding": "4.0.10", "System.Text.Encoding.Extensions": "4.0.10", diff --git a/src/System.Private.DataContractSerialization/src/project.json b/src/System.Private.DataContractSerialization/src/project.json index 75344a696e89..8613d69277c1 100644 --- a/src/System.Private.DataContractSerialization/src/project.json +++ b/src/System.Private.DataContractSerialization/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", @@ -18,7 +18,7 @@ "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Text.Encoding.Extensions": "4.0.10", "System.Text.RegularExpressions": "4.0.10", diff --git a/src/System.Private.Uri/src/project.json b/src/System.Private.Uri/src/project.json index d5311739e113..9a394bf000b5 100644 --- a/src/System.Private.Uri/src/project.json +++ b/src/System.Private.Uri/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.1" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "netstandard1.3": { @@ -18,7 +18,7 @@ "netcore50" ], "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Private.Uri/tests/project.json b/src/System.Private.Uri/tests/project.json index 9cf996c9356f..d72c27ba219d 100644 --- a/src/System.Private.Uri/tests/project.json +++ b/src/System.Private.Uri/tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Context/tests/project.json b/src/System.Reflection.Context/tests/project.json index b2818760395d..97fb3689a009 100644 --- a/src/System.Reflection.Context/tests/project.json +++ b/src/System.Reflection.Context/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.DispatchProxy/src/project.json b/src/System.Reflection.DispatchProxy/src/project.json index 3959661d5790..e09b7af68b44 100644 --- a/src/System.Reflection.DispatchProxy/src/project.json +++ b/src/System.Reflection.DispatchProxy/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Linq": "4.0.0", @@ -21,7 +21,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Runtime": "4.0.20" } } diff --git a/src/System.Reflection.DispatchProxy/tests/project.json b/src/System.Reflection.DispatchProxy/tests/project.json index dba1c88203c4..bb53fd9ded18 100644 --- a/src/System.Reflection.DispatchProxy/tests/project.json +++ b/src/System.Reflection.DispatchProxy/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Emit.ILGeneration/src/project.json b/src/System.Reflection.Emit.ILGeneration/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Reflection.Emit.ILGeneration/src/project.json +++ b/src/System.Reflection.Emit.ILGeneration/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Reflection.Emit.ILGeneration/tests/project.json b/src/System.Reflection.Emit.ILGeneration/tests/project.json index 62f0a5517426..d1cb63e70ac7 100644 --- a/src/System.Reflection.Emit.ILGeneration/tests/project.json +++ b/src/System.Reflection.Emit.ILGeneration/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Reflection.Emit.ILGeneration": "4.0.1-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Reflection.Emit.ILGeneration": "4.0.1-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Emit.Lightweight/src/project.json b/src/System.Reflection.Emit.Lightweight/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Reflection.Emit.Lightweight/src/project.json +++ b/src/System.Reflection.Emit.Lightweight/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Reflection.Emit.Lightweight/tests/project.json b/src/System.Reflection.Emit.Lightweight/tests/project.json index 2966ccf457e5..35c252ef920f 100644 --- a/src/System.Reflection.Emit.Lightweight/tests/project.json +++ b/src/System.Reflection.Emit.Lightweight/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Reflection.Emit.Lightweight": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Reflection.Emit.Lightweight": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Emit/src/project.json b/src/System.Reflection.Emit/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Reflection.Emit/src/project.json +++ b/src/System.Reflection.Emit/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Reflection.Emit/tests/project.json b/src/System.Reflection.Emit/tests/project.json index 9eb224720c58..f998c0b8fae0 100644 --- a/src/System.Reflection.Emit/tests/project.json +++ b/src/System.Reflection.Emit/tests/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Extensions/src/project.json b/src/System.Reflection.Extensions/src/project.json index 15e737e0b104..07a53d87a3ca 100644 --- a/src/System.Reflection.Extensions/src/project.json +++ b/src/System.Reflection.Extensions/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -11,12 +11,12 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.IO": "4.0.10", - "System.Reflection": "4.1.0-rc3-23925-00", + "System.Reflection": "4.1.0-rc3-23925-01", "System.Reflection.Primitives": "4.0.0", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", diff --git a/src/System.Reflection.Extensions/tests/project.json b/src/System.Reflection.Extensions/tests/project.json index eb33adede7ff..70262c81edf1 100644 --- a/src/System.Reflection.Extensions/tests/project.json +++ b/src/System.Reflection.Extensions/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Metadata/src/project.json b/src/System.Reflection.Metadata/src/project.json index d7177c406bb8..3c9ab3515f63 100644 --- a/src/System.Reflection.Metadata/src/project.json +++ b/src/System.Reflection.Metadata/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Collections.Immutable": "1.1.37", "System.Diagnostics.Debug": "4.0.0", diff --git a/src/System.Reflection.Metadata/tests/project.json b/src/System.Reflection.Metadata/tests/project.json index 88015f949d4b..396742ae3157 100644 --- a/src/System.Reflection.Metadata/tests/project.json +++ b/src/System.Reflection.Metadata/tests/project.json @@ -1,25 +1,25 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Immutable": "1.2.0-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Immutable": "1.2.0-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.Primitives/src/project.json b/src/System.Reflection.Primitives/src/project.json index 9917350490e9..953399e251be 100644 --- a/src/System.Reflection.Primitives/src/project.json +++ b/src/System.Reflection.Primitives/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.1" @@ -11,7 +11,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Runtime": "4.0.0", "System.Threading": "4.0.10" diff --git a/src/System.Reflection.TypeExtensions/ref/project.json b/src/System.Reflection.TypeExtensions/ref/project.json index 0af7628706e1..f80fa72ab759 100644 --- a/src/System.Reflection.TypeExtensions/ref/project.json +++ b/src/System.Reflection.TypeExtensions/ref/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.Runtime": "4.0.20", "System.Reflection.Primitives": "4.0.0", - "System.Reflection": "4.1.0-rc3-23925-00" + "System.Reflection": "4.1.0-rc3-23925-01" }, "frameworks": { "netstandard1.5": { diff --git a/src/System.Reflection.TypeExtensions/src/project.json b/src/System.Reflection.TypeExtensions/src/project.json index 616b0e8b6197..17f0c0f0275a 100644 --- a/src/System.Reflection.TypeExtensions/src/project.json +++ b/src/System.Reflection.TypeExtensions/src/project.json @@ -2,8 +2,8 @@ "frameworks": { "dnxcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net462": { @@ -13,12 +13,12 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Linq": "4.0.0", - "System.Reflection": "4.1.0-rc3-23925-00", + "System.Reflection": "4.1.0-rc3-23925-01", "System.Runtime.Extensions": "4.0.10" } } diff --git a/src/System.Reflection.TypeExtensions/tests/CoreCLR/project.json b/src/System.Reflection.TypeExtensions/tests/CoreCLR/project.json index e904d23874e5..3b5c82dfd4b5 100644 --- a/src/System.Reflection.TypeExtensions/tests/CoreCLR/project.json +++ b/src/System.Reflection.TypeExtensions/tests/CoreCLR/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection.TypeExtensions/tests/project.json b/src/System.Reflection.TypeExtensions/tests/project.json index 700464b1830c..3153677d5d2d 100644 --- a/src/System.Reflection.TypeExtensions/tests/project.json +++ b/src/System.Reflection.TypeExtensions/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Primitives": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Primitives": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection/src/netcore50aot/project.json b/src/System.Reflection/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Reflection/src/netcore50aot/project.json +++ b/src/System.Reflection/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Reflection/src/project.json b/src/System.Reflection/src/project.json index 117f59446de3..6422dee2cb70 100644 --- a/src/System.Reflection/src/project.json +++ b/src/System.Reflection/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net462": { diff --git a/src/System.Reflection/tests/CoreCLR/project.json b/src/System.Reflection/tests/CoreCLR/project.json index 669db8bb3ba3..cb3991738718 100644 --- a/src/System.Reflection/tests/CoreCLR/project.json +++ b/src/System.Reflection/tests/CoreCLR/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.AppContext": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.Emit": "4.0.1-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Loader": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.AppContext": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.Emit": "4.0.1-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Loader": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Reflection/tests/TestExe/project.json b/src/System.Reflection/tests/TestExe/project.json index 139ff57334c5..d527bfd18956 100644 --- a/src/System.Reflection/tests/TestExe/project.json +++ b/src/System.Reflection/tests/TestExe/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01" }, "frameworks": { "dnxcore50": {} diff --git a/src/System.Reflection/tests/project.json b/src/System.Reflection/tests/project.json index 6e06e931e1d3..8d46f14b7a5a 100644 --- a/src/System.Reflection/tests/project.json +++ b/src/System.Reflection/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Resources.Reader/src/project.json b/src/System.Resources.Reader/src/project.json index bd0a770c15b3..f090646fdb3c 100644 --- a/src/System.Resources.Reader/src/project.json +++ b/src/System.Resources.Reader/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.0", "System.IO": "4.0.0", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Resources.Reader/tests/project.json b/src/System.Resources.Reader/tests/project.json index 648f402505ec..569b8d571ce7 100644 --- a/src/System.Resources.Reader/tests/project.json +++ b/src/System.Resources.Reader/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Resources.ReaderWriter/src/project.json b/src/System.Resources.ReaderWriter/src/project.json index e31b85fb801f..719ad7617c8f 100644 --- a/src/System.Resources.ReaderWriter/src/project.json +++ b/src/System.Resources.ReaderWriter/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Resources.ReaderWriter/tests/project.json b/src/System.Resources.ReaderWriter/tests/project.json index 648f402505ec..569b8d571ce7 100644 --- a/src/System.Resources.ReaderWriter/tests/project.json +++ b/src/System.Resources.ReaderWriter/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Resources.ResourceManager/src/netcore50aot/project.json b/src/System.Resources.ResourceManager/src/netcore50aot/project.json index 5a22e734aa61..280ac5ec1bee 100644 --- a/src/System.Resources.ResourceManager/src/netcore50aot/project.json +++ b/src/System.Resources.ResourceManager/src/netcore50aot/project.json @@ -2,8 +2,8 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Resources.ResourceManager/src/project.json b/src/System.Resources.ResourceManager/src/project.json index 3124d671a84e..d69cc64a3a35 100644 --- a/src/System.Resources.ResourceManager/src/project.json +++ b/src/System.Resources.ResourceManager/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.1" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Resources.ResourceManager/tests/project.json b/src/System.Resources.ResourceManager/tests/project.json index b2176f19e3d8..b1572f8dd248 100644 --- a/src/System.Resources.ResourceManager/tests/project.json +++ b/src/System.Resources.ResourceManager/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Resources.Writer/src/project.json b/src/System.Resources.Writer/src/project.json index d0a231616d4d..e6cddffacbea 100644 --- a/src/System.Resources.Writer/src/project.json +++ b/src/System.Resources.Writer/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", diff --git a/src/System.Resources.Writer/tests/project.json b/src/System.Resources.Writer/tests/project.json index 648f402505ec..569b8d571ce7 100644 --- a/src/System.Resources.Writer/tests/project.json +++ b/src/System.Resources.Writer/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.CompilerServices.VisualC/src/project.json b/src/System.Runtime.CompilerServices.VisualC/src/project.json index 59acec7bc22c..5e504392ba59 100644 --- a/src/System.Runtime.CompilerServices.VisualC/src/project.json +++ b/src/System.Runtime.CompilerServices.VisualC/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Runtime.Extensions/src/System/Net/WebUtility.cs b/src/System.Runtime.Extensions/src/System/Net/WebUtility.cs index bcf0b42860bd..f6ba1b272607 100644 --- a/src/System.Runtime.Extensions/src/System/Net/WebUtility.cs +++ b/src/System.Runtime.Extensions/src/System/Net/WebUtility.cs @@ -625,11 +625,9 @@ private struct UrlDecoder private void FlushBytes() { - if (_numBytes > 0) - { - _numChars += _encoding.GetChars(_byteBuffer, 0, _numBytes, _charBuffer, _numChars); - _numBytes = 0; - } + Debug.Assert(_numBytes > 0); + _numChars += _encoding.GetChars(_byteBuffer, 0, _numBytes, _charBuffer, _numChars); + _numBytes = 0; } internal UrlDecoder(int bufferSize, Encoding encoding) diff --git a/src/System.Runtime.Extensions/src/project.json b/src/System.Runtime.Extensions/src/project.json index de188ef2a21e..02158113a0e8 100644 --- a/src/System.Runtime.Extensions/src/project.json +++ b/src/System.Runtime.Extensions/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "dnxcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net462": { @@ -12,7 +12,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1" } }, @@ -21,7 +21,7 @@ "netcore50" ], "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Runtime.Extensions/tests/project.json b/src/System.Runtime.Extensions/tests/project.json index 6edc73887b7e..1a66f8b1ff54 100644 --- a/src/System.Runtime.Extensions/tests/project.json +++ b/src/System.Runtime.Extensions/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Handles/src/project.json b/src/System.Runtime.Handles/src/project.json index 43db1e0920f3..94e6df1eb3db 100644 --- a/src/System.Runtime.Handles/src/project.json +++ b/src/System.Runtime.Handles/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Runtime.Handles/tests/project.json b/src/System.Runtime.Handles/tests/project.json index 7e785dbc9c37..0b78b6ba1524 100644 --- a/src/System.Runtime.Handles/tests/project.json +++ b/src/System.Runtime.Handles/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.InteropServices.PInvoke/src/project.json b/src/System.Runtime.InteropServices.PInvoke/src/project.json index 43db1e0920f3..94e6df1eb3db 100644 --- a/src/System.Runtime.InteropServices.PInvoke/src/project.json +++ b/src/System.Runtime.InteropServices.PInvoke/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Runtime.InteropServices.PInvoke/tests/project.json b/src/System.Runtime.InteropServices.PInvoke/tests/project.json index 9cf996c9356f..d72c27ba219d 100644 --- a/src/System.Runtime.InteropServices.PInvoke/tests/project.json +++ b/src/System.Runtime.InteropServices.PInvoke/tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.InteropServices.RuntimeInformation/src/project.json b/src/System.Runtime.InteropServices.RuntimeInformation/src/project.json index d190e0948bc2..6cfe480b8013 100644 --- a/src/System.Runtime.InteropServices.RuntimeInformation/src/project.json +++ b/src/System.Runtime.InteropServices.RuntimeInformation/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.0", "System.Reflection": "4.0.0", "System.Resources.ResourceManager": "4.0.0", diff --git a/src/System.Runtime.InteropServices.RuntimeInformation/tests/project.json b/src/System.Runtime.InteropServices.RuntimeInformation/tests/project.json index 1367c504e64b..e4369485e6bf 100644 --- a/src/System.Runtime.InteropServices.RuntimeInformation/tests/project.json +++ b/src/System.Runtime.InteropServices.RuntimeInformation/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.InteropServices.WindowsRuntime/src/project.json b/src/System.Runtime.InteropServices.WindowsRuntime/src/project.json index 33dc14efdfb1..f60d52490563 100644 --- a/src/System.Runtime.InteropServices.WindowsRuntime/src/project.json +++ b/src/System.Runtime.InteropServices.WindowsRuntime/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Runtime": "4.0.20" } }, diff --git a/src/System.Runtime.InteropServices/ref/project.json b/src/System.Runtime.InteropServices/ref/project.json index 52162223596e..c32a3b41f4f6 100644 --- a/src/System.Runtime.InteropServices/ref/project.json +++ b/src/System.Runtime.InteropServices/ref/project.json @@ -2,9 +2,9 @@ "dependencies": { "System.Reflection": "4.0.0", "System.Reflection.Primitives": "4.0.0", - "System.Runtime": "4.1.0-rc3-23925-00", + "System.Runtime": "4.1.0-rc3-23925-01", "System.Runtime.Handles": "4.0.0", - "System.Runtime.InteropServices.PInvoke": "4.0.0-rc3-23925-00" + "System.Runtime.InteropServices.PInvoke": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.5": { diff --git a/src/System.Runtime.InteropServices/src/project.json b/src/System.Runtime.InteropServices/src/project.json index e779511bdab2..5d024ecdaee9 100644 --- a/src/System.Runtime.InteropServices/src/project.json +++ b/src/System.Runtime.InteropServices/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net462": { diff --git a/src/System.Runtime.InteropServices/tests/project.json b/src/System.Runtime.InteropServices/tests/project.json index d7d4b76b440e..814625fc8d91 100644 --- a/src/System.Runtime.InteropServices/tests/project.json +++ b/src/System.Runtime.InteropServices/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Loader/src/project.json b/src/System.Runtime.Loader/src/project.json index 782e4c0a1179..49dd9b375f31 100644 --- a/src/System.Runtime.Loader/src/project.json +++ b/src/System.Runtime.Loader/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" diff --git a/src/System.Runtime.Loader/tests/DefaultContext/project.json b/src/System.Runtime.Loader/tests/DefaultContext/project.json index 652517bd55b2..9b7952e8db13 100644 --- a/src/System.Runtime.Loader/tests/DefaultContext/project.json +++ b/src/System.Runtime.Loader/tests/DefaultContext/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Loader": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Loader": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/project.json b/src/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/project.json index aca7e214af6e..3086ff15b450 100644 --- a/src/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/project.json +++ b/src/System.Runtime.Loader/tests/System.Runtime.Loader.Noop.Assembly/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Runtime": "4.1.0-rc3-23925-00" + "System.Runtime": "4.1.0-rc3-23925-01" }, "frameworks": { "netstandard1.0": {} diff --git a/src/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/project.json b/src/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/project.json index aca7e214af6e..3086ff15b450 100644 --- a/src/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/project.json +++ b/src/System.Runtime.Loader/tests/System.Runtime.Loader.Test.Assembly/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "System.Runtime": "4.1.0-rc3-23925-00" + "System.Runtime": "4.1.0-rc3-23925-01" }, "frameworks": { "netstandard1.0": {} diff --git a/src/System.Runtime.Loader/tests/project.json b/src/System.Runtime.Loader/tests/project.json index 652517bd55b2..9b7952e8db13 100644 --- a/src/System.Runtime.Loader/tests/project.json +++ b/src/System.Runtime.Loader/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Loader": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Loader": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Numerics/src/project.json b/src/System.Runtime.Numerics/src/project.json index 160ce3add7d5..34537f297155 100644 --- a/src/System.Runtime.Numerics/src/project.json +++ b/src/System.Runtime.Numerics/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Runtime.Numerics/tests/project.json b/src/System.Runtime.Numerics/tests/project.json index 989aff68e5fd..723193833398 100644 --- a/src/System.Runtime.Numerics/tests/project.json +++ b/src/System.Runtime.Numerics/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Serialization.Json/src/project.json b/src/System.Runtime.Serialization.Json/src/project.json index 9b2333dfb0ba..f88504110ada 100644 --- a/src/System.Runtime.Serialization.Json/src/project.json +++ b/src/System.Runtime.Serialization.Json/src/project.json @@ -2,9 +2,9 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.0", "System.Xml.XmlDocument": "4.0.0" diff --git a/src/System.Runtime.Serialization.Json/tests/project.json b/src/System.Runtime.Serialization.Json/tests/project.json index fe87a354e3dd..391c392aa919 100644 --- a/src/System.Runtime.Serialization.Json/tests/project.json +++ b/src/System.Runtime.Serialization.Json/tests/project.json @@ -1,22 +1,22 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.Serialization.Primitives/src/project.json b/src/System.Runtime.Serialization.Primitives/src/project.json index 2ad556c6aa58..eddc686f79db 100644 --- a/src/System.Runtime.Serialization.Primitives/src/project.json +++ b/src/System.Runtime.Serialization.Primitives/src/project.json @@ -12,7 +12,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.20", "System.Resources.ResourceManager": "4.0.0", "System.Threading": "4.0.10", diff --git a/src/System.Runtime.Serialization.Xml/ref/project.json b/src/System.Runtime.Serialization.Xml/ref/project.json index b3739d8f635f..d8a5a4f522f4 100644 --- a/src/System.Runtime.Serialization.Xml/ref/project.json +++ b/src/System.Runtime.Serialization.Xml/ref/project.json @@ -3,7 +3,7 @@ "System.Runtime": "4.0.0", "System.Xml.ReaderWriter": "4.0.0", "System.IO": "4.0.0", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", "System.Text.Encoding": "4.0.0" }, "frameworks": { diff --git a/src/System.Runtime.Serialization.Xml/src/project.json b/src/System.Runtime.Serialization.Xml/src/project.json index 79369ad93b24..66097f22d80b 100644 --- a/src/System.Runtime.Serialization.Xml/src/project.json +++ b/src/System.Runtime.Serialization.Xml/src/project.json @@ -2,9 +2,9 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.20", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00", + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01", "System.Reflection": "4.0.10", "System.Reflection.TypeExtensions": "4.0.0", "System.Xml.XmlDocument": "4.0.0" @@ -16,7 +16,7 @@ "net46": { "dependencies": { "Microsoft.TargetingPack.NETFramework.v4.6": "1.0.1", - "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-00" + "System.Runtime.Serialization.Primitives": "4.1.1-rc3-23925-01" } } } diff --git a/src/System.Runtime.Serialization.Xml/tests/project.json b/src/System.Runtime.Serialization.Xml/tests/project.json index a801e3207c60..9bc59e080f5e 100644 --- a/src/System.Runtime.Serialization.Xml/tests/project.json +++ b/src/System.Runtime.Serialization.Xml/tests/project.json @@ -1,24 +1,24 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Collections.NonGeneric": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Collections.NonGeneric": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Runtime.WindowsRuntime/src/netcore50aot/project.json b/src/System.Runtime.WindowsRuntime/src/netcore50aot/project.json index ecf4c814de4b..4c859cda24e5 100644 --- a/src/System.Runtime.WindowsRuntime/src/netcore50aot/project.json +++ b/src/System.Runtime.WindowsRuntime/src/netcore50aot/project.json @@ -2,8 +2,8 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Runtime.WindowsRuntime/src/project.json b/src/System.Runtime.WindowsRuntime/src/project.json index 54169fb400ec..425b41e70226 100644 --- a/src/System.Runtime.WindowsRuntime/src/project.json +++ b/src/System.Runtime.WindowsRuntime/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01", "Microsoft.TargetingPack.Private.WinRT": "1.0.1" }, "imports": [ diff --git a/src/System.Runtime/src/project.json b/src/System.Runtime/src/project.json index e779511bdab2..5d024ecdaee9 100644 --- a/src/System.Runtime/src/project.json +++ b/src/System.Runtime/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.6" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } }, "net462": { diff --git a/src/System.Runtime/tests/project.json b/src/System.Runtime/tests/project.json index e201ab20aba0..1420b7b0ad2e 100644 --- a/src/System.Runtime/tests/project.json +++ b/src/System.Runtime/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.AccessControl/ref/project.json b/src/System.Security.AccessControl/ref/project.json index 25991ba30eff..26baafd70745 100644 --- a/src/System.Security.AccessControl/ref/project.json +++ b/src/System.Security.AccessControl/ref/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00" + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.AccessControl/src/project.json b/src/System.Security.AccessControl/src/project.json index 5171a86b3208..c2c2b5210156 100644 --- a/src/System.Security.AccessControl/src/project.json +++ b/src/System.Security.AccessControl/src/project.json @@ -4,7 +4,7 @@ "dependencies": { "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", "System.Globalization": "4.0.0", "System.IO": "4.0.10", "System.Resources.ResourceManager": "4.0.0", @@ -13,10 +13,10 @@ "System.Runtime.InteropServices": "4.0.20", "System.Security.Claims": "4.0.0", "System.Security.Principal": "4.0.0", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Reflection": "4.0.0", "System.Threading": "4.0.10", - "System.Threading.Thread": "4.0.0-rc3-23925-00" + "System.Threading.Thread": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Security.Claims/tests/project.json b/src/System.Security.Claims/tests/project.json index dabdc4bb4513..e1e697d9e3bb 100644 --- a/src/System.Security.Claims/tests/project.json +++ b/src/System.Security.Claims/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Security.Principal": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Security.Principal": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Algorithms/ref/4.0/project.json b/src/System.Security.Cryptography.Algorithms/ref/4.0/project.json index 65ee94da57df..b374fdefd54f 100644 --- a/src/System.Security.Cryptography.Algorithms/ref/4.0/project.json +++ b/src/System.Security.Cryptography.Algorithms/ref/4.0/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.Runtime": "4.0.0", "System.IO": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.Algorithms/ref/project.json b/src/System.Security.Cryptography.Algorithms/ref/project.json index c89e551b0be1..f5824a5b7732 100644 --- a/src/System.Security.Cryptography.Algorithms/ref/project.json +++ b/src/System.Security.Cryptography.Algorithms/ref/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.Runtime": "4.0.0", "System.IO": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.4": { diff --git a/src/System.Security.Cryptography.Algorithms/src/project.json b/src/System.Security.Cryptography.Algorithms/src/project.json index 11393d2c0802..971aadf388db 100644 --- a/src/System.Security.Cryptography.Algorithms/src/project.json +++ b/src/System.Security.Cryptography.Algorithms/src/project.json @@ -10,7 +10,7 @@ "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", "System.Text.Encoding.Extensions": "4.0.0" }, "imports": [ diff --git a/src/System.Security.Cryptography.Algorithms/tests/project.json b/src/System.Security.Cryptography.Algorithms/tests/project.json index f2ea3a96465a..636f36387ae6 100644 --- a/src/System.Security.Cryptography.Algorithms/tests/project.json +++ b/src/System.Security.Cryptography.Algorithms/tests/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Cng/ref/4.0/project.json b/src/System.Security.Cryptography.Cng/ref/4.0/project.json index 399a015e57d2..0cc3899c5ce5 100644 --- a/src/System.Security.Cryptography.Cng/ref/4.0/project.json +++ b/src/System.Security.Cryptography.Cng/ref/4.0/project.json @@ -3,8 +3,8 @@ "System.Runtime": "4.0.0", "System.IO": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.Cng/ref/project.json b/src/System.Security.Cryptography.Cng/ref/project.json index 885efbd3eb1b..40b78eb9766e 100644 --- a/src/System.Security.Cryptography.Cng/ref/project.json +++ b/src/System.Security.Cryptography.Cng/ref/project.json @@ -3,8 +3,8 @@ "System.Runtime": "4.0.0", "System.IO": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.4": { diff --git a/src/System.Security.Cryptography.Cng/src/project.json b/src/System.Security.Cryptography.Cng/src/project.json index 02ed1f21ff18..ad8131dcdc41 100644 --- a/src/System.Security.Cryptography.Cng/src/project.json +++ b/src/System.Security.Cryptography.Cng/src/project.json @@ -5,7 +5,7 @@ "dotnet5.5" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", "System.IO": "4.0.10", @@ -13,7 +13,7 @@ "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Security.Cryptography.Cng/tests/project.json b/src/System.Security.Cryptography.Cng/tests/project.json index 783ef7592b5b..8433e3455f7c 100644 --- a/src/System.Security.Cryptography.Cng/tests/project.json +++ b/src/System.Security.Cryptography.Cng/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Csp/ref/project.json b/src/System.Security.Cryptography.Csp/ref/project.json index bceca5cc7961..ce4f201e6b4e 100644 --- a/src/System.Security.Cryptography.Csp/ref/project.json +++ b/src/System.Security.Cryptography.Csp/ref/project.json @@ -2,8 +2,8 @@ "dependencies": { "System.Runtime": "4.0.0", "System.IO": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.Csp/src/project.json b/src/System.Security.Cryptography.Csp/src/project.json index 837da9c9906d..5d50a97bf99d 100644 --- a/src/System.Security.Cryptography.Csp/src/project.json +++ b/src/System.Security.Cryptography.Csp/src/project.json @@ -5,7 +5,7 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.IO": "4.0.10", @@ -13,8 +13,8 @@ "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.10", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" } diff --git a/src/System.Security.Cryptography.Csp/tests/project.json b/src/System.Security.Cryptography.Csp/tests/project.json index 82942f8e6a78..10b633c21083 100644 --- a/src/System.Security.Cryptography.Csp/tests/project.json +++ b/src/System.Security.Cryptography.Csp/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Encoding/src/project.json b/src/System.Security.Cryptography.Encoding/src/project.json index 6ef76b86c9c2..f04d674fa350 100644 --- a/src/System.Security.Cryptography.Encoding/src/project.json +++ b/src/System.Security.Cryptography.Encoding/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", @@ -12,7 +12,7 @@ "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20", "System.Text.Encoding": "4.0.10", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Security.Cryptography.Encoding/tests/project.json b/src/System.Security.Cryptography.Encoding/tests/project.json index 22d59ffa9f12..f0981a43757e 100644 --- a/src/System.Security.Cryptography.Encoding/tests/project.json +++ b/src/System.Security.Cryptography.Encoding/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Encryption.ECDiffieHellman/ref/project.json b/src/System.Security.Cryptography.Encryption.ECDiffieHellman/ref/project.json index 59593c0435f9..400c9caa830b 100644 --- a/src/System.Security.Cryptography.Encryption.ECDiffieHellman/ref/project.json +++ b/src/System.Security.Cryptography.Encryption.ECDiffieHellman/ref/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.Encryption.ECDsa/ref/project.json b/src/System.Security.Cryptography.Encryption.ECDsa/ref/project.json index 59593c0435f9..400c9caa830b 100644 --- a/src/System.Security.Cryptography.Encryption.ECDsa/ref/project.json +++ b/src/System.Security.Cryptography.Encryption.ECDsa/ref/project.json @@ -2,7 +2,7 @@ "dependencies": { "System.IO": "4.0.0", "System.Runtime": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.OpenSsl/ref/project.json b/src/System.Security.Cryptography.OpenSsl/ref/project.json index a808301a611b..f227063d97fe 100644 --- a/src/System.Security.Cryptography.OpenSsl/ref/project.json +++ b/src/System.Security.Cryptography.OpenSsl/ref/project.json @@ -3,8 +3,8 @@ "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", "System.IO": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.4": { diff --git a/src/System.Security.Cryptography.OpenSsl/src/project.json b/src/System.Security.Cryptography.OpenSsl/src/project.json index 1da712afc459..17a153b09a26 100644 --- a/src/System.Security.Cryptography.OpenSsl/src/project.json +++ b/src/System.Security.Cryptography.OpenSsl/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -9,8 +9,8 @@ "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10" }, "frameworks": { diff --git a/src/System.Security.Cryptography.OpenSsl/tests/project.json b/src/System.Security.Cryptography.OpenSsl/tests/project.json index 15b73a0ac3ba..6e526e12f35a 100644 --- a/src/System.Security.Cryptography.OpenSsl/tests/project.json +++ b/src/System.Security.Cryptography.OpenSsl/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.Primitives/src/project.json b/src/System.Security.Cryptography.Primitives/src/project.json index fe55271d3d6b..14885bb5e35e 100644 --- a/src/System.Security.Cryptography.Primitives/src/project.json +++ b/src/System.Security.Cryptography.Primitives/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.IO": "4.0.10", diff --git a/src/System.Security.Cryptography.Primitives/tests/project.json b/src/System.Security.Cryptography.Primitives/tests/project.json index c6f764d81752..03eb86895e14 100644 --- a/src/System.Security.Cryptography.Primitives/tests/project.json +++ b/src/System.Security.Cryptography.Primitives/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.ProtectedData/src/project.json b/src/System.Security.Cryptography.ProtectedData/src/project.json index 6415b3e39518..5cecff0b9878 100644 --- a/src/System.Security.Cryptography.ProtectedData/src/project.json +++ b/src/System.Security.Cryptography.ProtectedData/src/project.json @@ -5,7 +5,7 @@ "dotnet5.4" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", "System.IO": "4.0.10", @@ -13,7 +13,7 @@ "System.Runtime": "4.0.20", "System.Runtime.Extensions": "4.0.0", "System.Runtime.InteropServices": "4.0.20", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00" + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Security.Cryptography.ProtectedData/tests/project.json b/src/System.Security.Cryptography.ProtectedData/tests/project.json index 82942f8e6a78..10b633c21083 100644 --- a/src/System.Security.Cryptography.ProtectedData/tests/project.json +++ b/src/System.Security.Cryptography.ProtectedData/tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Numerics": "4.0.1-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Numerics": "4.0.1-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Cryptography.X509Certificates/ref/4.0/project.json b/src/System.Security.Cryptography.X509Certificates/ref/4.0/project.json index 9bb6b720ebda..98f6bd68e1db 100644 --- a/src/System.Security.Cryptography.X509Certificates/ref/4.0/project.json +++ b/src/System.Security.Cryptography.X509Certificates/ref/4.0/project.json @@ -3,9 +3,9 @@ "System.IO": "4.0.0", "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.3": { diff --git a/src/System.Security.Cryptography.X509Certificates/ref/project.json b/src/System.Security.Cryptography.X509Certificates/ref/project.json index 9651501ccfc0..d6e48f2954aa 100644 --- a/src/System.Security.Cryptography.X509Certificates/ref/project.json +++ b/src/System.Security.Cryptography.X509Certificates/ref/project.json @@ -3,9 +3,9 @@ "System.IO": "4.0.0", "System.Runtime": "4.0.0", "System.Runtime.Handles": "4.0.0", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01" }, "frameworks": { "netstandard1.4": { diff --git a/src/System.Security.Cryptography.X509Certificates/src/netcore50/project.json b/src/System.Security.Cryptography.X509Certificates/src/netcore50/project.json index a09de87b38f1..9b94cc47a292 100644 --- a/src/System.Security.Cryptography.X509Certificates/src/netcore50/project.json +++ b/src/System.Security.Cryptography.X509Certificates/src/netcore50/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", @@ -14,8 +14,8 @@ "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", "System.Runtime.WindowsRuntime": "4.0.10", - "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" }, diff --git a/src/System.Security.Cryptography.X509Certificates/src/unix/project.json b/src/System.Security.Cryptography.X509Certificates/src/unix/project.json index acb44785a2d2..a754519c0abe 100644 --- a/src/System.Security.Cryptography.X509Certificates/src/unix/project.json +++ b/src/System.Security.Cryptography.X509Certificates/src/unix/project.json @@ -1,22 +1,22 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", "System.Globalization.Calendars": "4.0.0", "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Watcher": "4.0.0-rc3-23925-00", + "System.IO.FileSystem.Watcher": "4.0.0-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.OpenSsl": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" }, diff --git a/src/System.Security.Cryptography.X509Certificates/src/win/project.json b/src/System.Security.Cryptography.X509Certificates/src/win/project.json index 9f0427d151c4..cc1ed8b0887a 100644 --- a/src/System.Security.Cryptography.X509Certificates/src/win/project.json +++ b/src/System.Security.Cryptography.X509Certificates/src/win/project.json @@ -1,22 +1,22 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", "System.Globalization": "4.0.10", "System.Globalization.Calendars": "4.0.0", "System.IO.FileSystem": "4.0.0", - "System.IO.FileSystem.Watcher": "4.0.0-rc3-23925-00", + "System.IO.FileSystem.Watcher": "4.0.0-rc3-23925-01", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.Handles": "4.0.0", "System.Runtime.InteropServices": "4.0.20", "System.Runtime.Numerics": "4.0.0", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-00", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Primitives": "4.0.0-rc3-23925-01", "System.Text.Encoding": "4.0.10", "System.Threading": "4.0.10" }, @@ -26,7 +26,7 @@ "dotnet5.5" ], "dependencies": { - "System.Security.Cryptography.Csp": "4.0.0-rc3-23925-00" + "System.Security.Cryptography.Csp": "4.0.0-rc3-23925-01" } } }, diff --git a/src/System.Security.Cryptography.X509Certificates/tests/project.json b/src/System.Security.Cryptography.X509Certificates/tests/project.json index 509a56ba24c9..d2e22bc6184c 100644 --- a/src/System.Security.Cryptography.X509Certificates/tests/project.json +++ b/src/System.Security.Cryptography.X509Certificates/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-00", - "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-00", - "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0-rc3-23925-01", + "System.Security.Cryptography.Algorithms": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Cng": "4.1.0-rc3-23925-01", + "System.Security.Cryptography.Encoding": "4.0.0-rc3-23925-01", "System.Security.Cryptography.X509Certificates.TestData": "1.0.0-prerelease", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Principal.Windows/src/project.json b/src/System.Security.Principal.Windows/src/project.json index f9584ea6dadd..66c6642f3724 100644 --- a/src/System.Security.Principal.Windows/src/project.json +++ b/src/System.Security.Principal.Windows/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Security.Principal.Windows/tests/project.json b/src/System.Security.Principal.Windows/tests/project.json index 7c71ab7e032a..22a8dc864a27 100644 --- a/src/System.Security.Principal.Windows/tests/project.json +++ b/src/System.Security.Principal.Windows/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Security.Claims": "4.0.1-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Security.Claims": "4.0.1-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Security.Principal/src/project.json b/src/System.Security.Principal/src/project.json index 63d859b047cd..2e2675b1b029 100644 --- a/src/System.Security.Principal/src/project.json +++ b/src/System.Security.Principal/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Runtime": "4.0.0" }, "imports": [ diff --git a/src/System.Security.Principal/tests/project.json b/src/System.Security.Principal/tests/project.json index 89d7fa6596b3..4c080e8f783d 100644 --- a/src/System.Security.Principal/tests/project.json +++ b/src/System.Security.Principal/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.ServiceProcess.ServiceController/src/project.json b/src/System.ServiceProcess.ServiceController/src/project.json index 0be89e4ed374..98ca3ffec929 100644 --- a/src/System.ServiceProcess.ServiceController/src/project.json +++ b/src/System.ServiceProcess.ServiceController/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.5": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "Microsoft.Win32.Primitives": "4.0.0", "System.Collections": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests/project.json b/src/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests/project.json index f4a4cfbe3195..e6f8e8ec8954 100644 --- a/src/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests/project.json +++ b/src/System.ServiceProcess.ServiceController/tests/System.ServiceProcess.ServiceController.Tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.Win32.Registry": "4.0.0-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.Win32.Registry": "4.0.0-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Text.Encoding.CodePages/src/project.json b/src/System.Text.Encoding.CodePages/src/project.json index f88cccff8f84..e137e7df95d7 100644 --- a/src/System.Text.Encoding.CodePages/src/project.json +++ b/src/System.Text.Encoding.CodePages/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Text.Encoding.CodePages/tests/project.json b/src/System.Text.Encoding.CodePages/tests/project.json index 3ebbf6c5d964..4bf3b2fe4564 100644 --- a/src/System.Text.Encoding.CodePages/tests/project.json +++ b/src/System.Text.Encoding.CodePages/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Text.Encoding.Extensions/src/netcore50aot/project.json b/src/System.Text.Encoding.Extensions/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Text.Encoding.Extensions/src/netcore50aot/project.json +++ b/src/System.Text.Encoding.Extensions/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Text.Encoding.Extensions/src/project.json b/src/System.Text.Encoding.Extensions/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Text.Encoding.Extensions/src/project.json +++ b/src/System.Text.Encoding.Extensions/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Text.Encoding.Extensions/tests/project.json b/src/System.Text.Encoding.Extensions/tests/project.json index e3078295cec7..d6b40303319b 100644 --- a/src/System.Text.Encoding.Extensions/tests/project.json +++ b/src/System.Text.Encoding.Extensions/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Text.Encoding/src/netcore50aot/project.json b/src/System.Text.Encoding/src/netcore50aot/project.json index e1335476fe0f..701a8742f98c 100644 --- a/src/System.Text.Encoding/src/netcore50aot/project.json +++ b/src/System.Text.Encoding/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Text.Encoding/src/project.json b/src/System.Text.Encoding/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Text.Encoding/src/project.json +++ b/src/System.Text.Encoding/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Text.Encoding/tests/project.json b/src/System.Text.Encoding/tests/project.json index 9a7931ca21d3..f56be893bbef 100644 --- a/src/System.Text.Encoding/tests/project.json +++ b/src/System.Text.Encoding/tests/project.json @@ -1,16 +1,16 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Text.Encodings.Web/src/project.json b/src/System.Text.Encodings.Web/src/project.json index 50c2c03380ee..47f58d96c6df 100644 --- a/src/System.Text.Encodings.Web/src/project.json +++ b/src/System.Text.Encodings.Web/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Text.Encodings.Web/tests/project.json b/src/System.Text.Encodings.Web/tests/project.json index 057c59cb0743..2499c63e3133 100644 --- a/src/System.Text.Encodings.Web/tests/project.json +++ b/src/System.Text.Encodings.Web/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.Extensions": "4.0.1-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.Extensions": "4.0.1-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Text.RegularExpressions/src/project.json b/src/System.Text.RegularExpressions/src/project.json index d64634275c37..23586db400c3 100644 --- a/src/System.Text.RegularExpressions/src/project.json +++ b/src/System.Text.RegularExpressions/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Text.RegularExpressions/tests/project.json b/src/System.Text.RegularExpressions/tests/project.json index 989aff68e5fd..723193833398 100644 --- a/src/System.Text.RegularExpressions/tests/project.json +++ b/src/System.Text.RegularExpressions/tests/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.AccessControl/ref/project.json b/src/System.Threading.AccessControl/ref/project.json index 1b6a00ecbeb1..2418ce4dad57 100644 --- a/src/System.Threading.AccessControl/ref/project.json +++ b/src/System.Threading.AccessControl/ref/project.json @@ -1,8 +1,8 @@ { "dependencies": { "System.Runtime": "4.0.0", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.0", "System.Threading.Tasks": "4.0.0" }, diff --git a/src/System.Threading.AccessControl/src/project.json b/src/System.Threading.AccessControl/src/project.json index 225a5ed2d566..22b5c35d3310 100644 --- a/src/System.Threading.AccessControl/src/project.json +++ b/src/System.Threading.AccessControl/src/project.json @@ -7,8 +7,8 @@ "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", "System.Runtime.InteropServices": "4.0.20", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", "System.Threading": "4.0.10", "System.Threading.Tasks": "4.0.0" }, diff --git a/src/System.Threading.AccessControl/tests/project.json b/src/System.Threading.AccessControl/tests/project.json index f5e0298f9f19..44a423cd107f 100644 --- a/src/System.Threading.AccessControl/tests/project.json +++ b/src/System.Threading.AccessControl/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Resources.ResourceManager": "4.0.1-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Handles": "4.0.1-rc3-23925-00", - "System.Runtime.InteropServices": "4.1.0-rc3-23925-00", - "System.Security.AccessControl": "4.0.0-rc3-23925-00", - "System.Security.Principal.Windows": "4.0.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Resources.ResourceManager": "4.0.1-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Handles": "4.0.1-rc3-23925-01", + "System.Runtime.InteropServices": "4.1.0-rc3-23925-01", + "System.Security.AccessControl": "4.0.0-rc3-23925-01", + "System.Security.Principal.Windows": "4.0.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Overlapped/src/project.json b/src/System.Threading.Overlapped/src/project.json index 3961e8d740fb..5bc3d2f7704b 100644 --- a/src/System.Threading.Overlapped/src/project.json +++ b/src/System.Threading.Overlapped/src/project.json @@ -2,13 +2,13 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "netcore50": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Diagnostics.Debug": "4.0.0", "System.Resources.ResourceManager": "4.0.0", "System.Runtime": "4.0.20", diff --git a/src/System.Threading.Overlapped/tests/project.json b/src/System.Threading.Overlapped/tests/project.json index b4d50e4a9f6e..52620267733d 100644 --- a/src/System.Threading.Overlapped/tests/project.json +++ b/src/System.Threading.Overlapped/tests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Overlapped": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Overlapped": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Tasks.Dataflow/src/project.json b/src/System.Threading.Tasks.Dataflow/src/project.json index db9614aef0d4..653ee23c3889 100644 --- a/src/System.Threading.Tasks.Dataflow/src/project.json +++ b/src/System.Threading.Tasks.Dataflow/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Collections.Concurrent": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", diff --git a/src/System.Threading.Tasks.Dataflow/src/wp8/project.json b/src/System.Threading.Tasks.Dataflow/src/wp8/project.json index 28d112c24ff2..333cef0632d9 100644 --- a/src/System.Threading.Tasks.Dataflow/src/wp8/project.json +++ b/src/System.Threading.Tasks.Dataflow/src/wp8/project.json @@ -5,7 +5,7 @@ "dnxcore50" ], "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.0", diff --git a/src/System.Threading.Tasks.Dataflow/tests/project.json b/src/System.Threading.Tasks.Dataflow/tests/project.json index 6bdc25189445..9e72fa263c30 100644 --- a/src/System.Threading.Tasks.Dataflow/tests/project.json +++ b/src/System.Threading.Tasks.Dataflow/tests/project.json @@ -1,20 +1,20 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Contracts": "4.0.1-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Contracts": "4.0.1-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Tasks.Parallel": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Tasks.Extensions/src/project.json b/src/System.Threading.Tasks.Extensions/src/project.json index 252e35fd604a..c076eccfd0e7 100644 --- a/src/System.Threading.Tasks.Extensions/src/project.json +++ b/src/System.Threading.Tasks.Extensions/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.0", "System.Diagnostics.Debug": "4.0.0", "System.Runtime": "4.0.0", diff --git a/src/System.Threading.Tasks.Extensions/tests/project.json b/src/System.Threading.Tasks.Extensions/tests/project.json index cd974b04ff72..e8ae4075d5ec 100644 --- a/src/System.Threading.Tasks.Extensions/tests/project.json +++ b/src/System.Threading.Tasks.Extensions/tests/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Tasks.Parallel/src/project.json b/src/System.Threading.Tasks.Parallel/src/project.json index ee491a0f9fbc..484f79b9e4b9 100644 --- a/src/System.Threading.Tasks.Parallel/src/project.json +++ b/src/System.Threading.Tasks.Parallel/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections.Concurrent": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Threading.Tasks.Parallel/tests/project.json b/src/System.Threading.Tasks.Parallel/tests/project.json index 28678984d58d..fd266e9d1102 100644 --- a/src/System.Threading.Tasks.Parallel/tests/project.json +++ b/src/System.Threading.Tasks.Parallel/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Tasks/src/project.json b/src/System.Threading.Tasks/src/project.json index 4036de34ed22..431fb6a2b3fd 100644 --- a/src/System.Threading.Tasks/src/project.json +++ b/src/System.Threading.Tasks/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -15,7 +15,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01" } } } diff --git a/src/System.Threading.Tasks/tests/project.json b/src/System.Threading.Tasks/tests/project.json index 69e530f7339f..9894f1f81644 100644 --- a/src/System.Threading.Tasks/tests/project.json +++ b/src/System.Threading.Tasks/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Collections.Concurrent": "4.0.12-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Collections.Concurrent": "4.0.12-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Reflection.TypeExtensions": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading.Thread/src/project.json b/src/System.Threading.Thread/src/project.json index 59acec7bc22c..5e504392ba59 100644 --- a/src/System.Threading.Thread/src/project.json +++ b/src/System.Threading.Thread/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Threading.ThreadPool/src/project.json b/src/System.Threading.ThreadPool/src/project.json index 59acec7bc22c..5e504392ba59 100644 --- a/src/System.Threading.ThreadPool/src/project.json +++ b/src/System.Threading.ThreadPool/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Threading.Timer/src/netcore50aot/project.json b/src/System.Threading.Timer/src/netcore50aot/project.json index 6905b92e7633..30c8c8929080 100644 --- a/src/System.Threading.Timer/src/netcore50aot/project.json +++ b/src/System.Threading.Timer/src/netcore50aot/project.json @@ -2,7 +2,7 @@ "frameworks": { "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Runtime": "4.0.20" } } diff --git a/src/System.Threading.Timer/src/project.json b/src/System.Threading.Timer/src/project.json index 7685a2512023..becccaa4668d 100644 --- a/src/System.Threading.Timer/src/project.json +++ b/src/System.Threading.Timer/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" } }, "net46": { diff --git a/src/System.Threading.Timer/tests/project.json b/src/System.Threading.Timer/tests/project.json index 3b05e03a92a5..fdc72438967f 100644 --- a/src/System.Threading.Timer/tests/project.json +++ b/src/System.Threading.Timer/tests/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Timer": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Timer": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Threading/src/project.json b/src/System.Threading/src/project.json index 33dc14efdfb1..f60d52490563 100644 --- a/src/System.Threading/src/project.json +++ b/src/System.Threading/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-00" + "Microsoft.TargetingPack.Private.CoreCLR": "1.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" @@ -10,7 +10,7 @@ }, "netcore50": { "dependencies": { - "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-00", + "Microsoft.TargetingPack.Private.NETNative": "1.0.0-rc3-23925-01", "System.Runtime": "4.0.20" } }, diff --git a/src/System.Threading/tests/project.json b/src/System.Threading/tests/project.json index 46a5c22d8b32..71aacc9b5fa4 100644 --- a/src/System.Threading/tests/project.json +++ b/src/System.Threading/tests/project.json @@ -1,18 +1,18 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Process": "4.1.0-rc3-23925-00", - "System.Diagnostics.Tracing": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Threading.Thread": "4.0.0-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Process": "4.1.0-rc3-23925-01", + "System.Diagnostics.Tracing": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Threading.Thread": "4.0.0-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/src/project.json b/src/System.Xml.ReaderWriter/src/project.json index ae899aaa5c0c..2904db7edeff 100644 --- a/src/System.Xml.ReaderWriter/src/project.json +++ b/src/System.Xml.ReaderWriter/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", @@ -18,7 +18,7 @@ "System.Text.Encoding.Extensions": "4.0.10", "System.Text.RegularExpressions": "4.0.0", "System.Threading.Tasks": "4.0.10", - "System.Threading.Tasks.Extensions": "4.0.0-rc3-23925-00" + "System.Threading.Tasks.Extensions": "4.0.0-rc3-23925-01" }, "imports": [ "dotnet5.4" diff --git a/src/System.Xml.ReaderWriter/tests/Readers/CharCheckingReader/project.json b/src/System.Xml.ReaderWriter/tests/Readers/CharCheckingReader/project.json index 65bd8f7bfa1c..46155677a9e8 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/CharCheckingReader/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/CharCheckingReader/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/CustomReader/project.json b/src/System.Xml.ReaderWriter/tests/Readers/CustomReader/project.json index 65bd8f7bfa1c..46155677a9e8 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/CustomReader/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/CustomReader/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/FactoryReader/project.json b/src/System.Xml.ReaderWriter/tests/Readers/FactoryReader/project.json index 65bd8f7bfa1c..46155677a9e8 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/FactoryReader/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/FactoryReader/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/NameTable/project.json b/src/System.Xml.ReaderWriter/tests/Readers/NameTable/project.json index f64451665702..c02f47e8082e 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/NameTable/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/NameTable/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/ReaderSettings/project.json b/src/System.Xml.ReaderWriter/tests/Readers/ReaderSettings/project.json index 04cb66ec99e0..73d949c0cad2 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/ReaderSettings/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/ReaderSettings/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/SubtreeReader/project.json b/src/System.Xml.ReaderWriter/tests/Readers/SubtreeReader/project.json index 65bd8f7bfa1c..46155677a9e8 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/SubtreeReader/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/SubtreeReader/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Readers/WrappedReader/project.json b/src/System.Xml.ReaderWriter/tests/Readers/WrappedReader/project.json index 7a2f5faed99f..0076af9b32ab 100644 --- a/src/System.Xml.ReaderWriter/tests/Readers/WrappedReader/project.json +++ b/src/System.Xml.ReaderWriter/tests/Readers/WrappedReader/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Writers/RwFactory/project.json b/src/System.Xml.ReaderWriter/tests/Writers/RwFactory/project.json index b77ed6bca9c5..2bb8fb60528d 100644 --- a/src/System.Xml.ReaderWriter/tests/Writers/RwFactory/project.json +++ b/src/System.Xml.ReaderWriter/tests/Writers/RwFactory/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/Writers/XmlWriterApi/project.json b/src/System.Xml.ReaderWriter/tests/Writers/XmlWriterApi/project.json index b77ed6bca9c5..2bb8fb60528d 100644 --- a/src/System.Xml.ReaderWriter/tests/Writers/XmlWriterApi/project.json +++ b/src/System.Xml.ReaderWriter/tests/Writers/XmlWriterApi/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlConvert/project.json b/src/System.Xml.ReaderWriter/tests/XmlConvert/project.json index 61886be2b4d9..18e666b84957 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlConvert/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlConvert/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlReader/ReadContentAs/project.json b/src/System.Xml.ReaderWriter/tests/XmlReader/ReadContentAs/project.json index 955373b8dfa0..1f63cf400f38 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlReader/ReadContentAs/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlReader/ReadContentAs/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlReader/Tests/project.json b/src/System.Xml.ReaderWriter/tests/XmlReader/Tests/project.json index 6707a104d3c2..dc19df6b5aa0 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlReader/Tests/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlReader/Tests/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.RegularExpressions": "4.0.12-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.RegularExpressions": "4.0.12-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlReader/XmlResolver/project.json b/src/System.Xml.ReaderWriter/tests/XmlReader/XmlResolver/project.json index 03a6927964ea..335dfcd17728 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlReader/XmlResolver/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlReader/XmlResolver/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.IO.FileSystem": "4.0.1-rc3-23925-00", - "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.IO.FileSystem": "4.0.1-rc3-23925-01", + "System.IO.FileSystem.Primitives": "4.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlReaderLib/project.json b/src/System.Xml.ReaderWriter/tests/XmlReaderLib/project.json index e6edb55b2fb9..8fbf19becc89 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlReaderLib/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlReaderLib/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.ReaderWriter/tests/XmlWriter/project.json b/src/System.Xml.ReaderWriter/tests/XmlWriter/project.json index bbb6580f3e60..33a48287d8b9 100644 --- a/src/System.Xml.ReaderWriter/tests/XmlWriter/project.json +++ b/src/System.Xml.ReaderWriter/tests/XmlWriter/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.AppContext": "4.1.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.AppContext": "4.1.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Text.Encoding.Extensions": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/Properties/project.json b/src/System.Xml.XDocument/tests/Properties/project.json index a5336d957425..b54dc9f6ea90 100644 --- a/src/System.Xml.XDocument/tests/Properties/project.json +++ b/src/System.Xml.XDocument/tests/Properties/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/SDMSample/project.json b/src/System.Xml.XDocument/tests/SDMSample/project.json index 08248e715024..4831aa8d4f08 100644 --- a/src/System.Xml.XDocument/tests/SDMSample/project.json +++ b/src/System.Xml.XDocument/tests/SDMSample/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/Streaming/project.json b/src/System.Xml.XDocument/tests/Streaming/project.json index 67cd4e681b2e..c8bad27fd2b0 100644 --- a/src/System.Xml.XDocument/tests/Streaming/project.json +++ b/src/System.Xml.XDocument/tests/Streaming/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/TreeManipulation/project.json b/src/System.Xml.XDocument/tests/TreeManipulation/project.json index 930f5594eb82..e4cce1ae6419 100644 --- a/src/System.Xml.XDocument/tests/TreeManipulation/project.json +++ b/src/System.Xml.XDocument/tests/TreeManipulation/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/XDocument.Common/project.json b/src/System.Xml.XDocument/tests/XDocument.Common/project.json index 90f95d89d6f4..d34acc12f658 100644 --- a/src/System.Xml.XDocument/tests/XDocument.Common/project.json +++ b/src/System.Xml.XDocument/tests/XDocument.Common/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/XDocument.Test.ModuleCore/project.json b/src/System.Xml.XDocument/tests/XDocument.Test.ModuleCore/project.json index 61fe0ce30c1e..69df765e90fa 100644 --- a/src/System.Xml.XDocument/tests/XDocument.Test.ModuleCore/project.json +++ b/src/System.Xml.XDocument/tests/XDocument.Test.ModuleCore/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Console": "4.0.0-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Console": "4.0.0-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/axes/project.json b/src/System.Xml.XDocument/tests/axes/project.json index 37d62734ba28..58b69be5906c 100644 --- a/src/System.Xml.XDocument/tests/axes/project.json +++ b/src/System.Xml.XDocument/tests/axes/project.json @@ -1,13 +1,13 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/events/project.json b/src/System.Xml.XDocument/tests/events/project.json index ce06a57ffe7a..bcfd80e76e9e 100644 --- a/src/System.Xml.XDocument/tests/events/project.json +++ b/src/System.Xml.XDocument/tests/events/project.json @@ -1,14 +1,14 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/misc/project.json b/src/System.Xml.XDocument/tests/misc/project.json index 67cd4e681b2e..c8bad27fd2b0 100644 --- a/src/System.Xml.XDocument/tests/misc/project.json +++ b/src/System.Xml.XDocument/tests/misc/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/xNodeBuilder/project.json b/src/System.Xml.XDocument/tests/xNodeBuilder/project.json index 2345b8cba608..a6cc34cac835 100644 --- a/src/System.Xml.XDocument/tests/xNodeBuilder/project.json +++ b/src/System.Xml.XDocument/tests/xNodeBuilder/project.json @@ -1,18 +1,18 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XDocument/tests/xNodeReader/project.json b/src/System.Xml.XDocument/tests/xNodeReader/project.json index 930f5594eb82..e4cce1ae6419 100644 --- a/src/System.Xml.XDocument/tests/xNodeReader/project.json +++ b/src/System.Xml.XDocument/tests/xNodeReader/project.json @@ -1,16 +1,16 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XPath.XDocument/tests/project.json b/src/System.Xml.XPath.XDocument/tests/project.json index c390747b2642..dfb4d4d81d8d 100644 --- a/src/System.Xml.XPath.XDocument/tests/project.json +++ b/src/System.Xml.XPath.XDocument/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XPath.XmlDocument/src/project.json b/src/System.Xml.XPath.XmlDocument/src/project.json index 0f1f59e89828..2c8cfa81fffe 100644 --- a/src/System.Xml.XPath.XmlDocument/src/project.json +++ b/src/System.Xml.XPath.XmlDocument/src/project.json @@ -1,6 +1,6 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Xml.XPath.XmlDocument/tests/project.json b/src/System.Xml.XPath.XmlDocument/tests/project.json index f70475373245..2e69468dba50 100644 --- a/src/System.Xml.XPath.XmlDocument/tests/project.json +++ b/src/System.Xml.XPath.XmlDocument/tests/project.json @@ -1,19 +1,19 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", - "System.Xml.XPath": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", + "System.Xml.XPath": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XPath/src/project.json b/src/System.Xml.XPath/src/project.json index 23273a389363..a10336790762 100644 --- a/src/System.Xml.XPath/src/project.json +++ b/src/System.Xml.XPath/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Contracts": "4.0.0", "System.Diagnostics.Debug": "4.0.10", diff --git a/src/System.Xml.XPath/tests/project.json b/src/System.Xml.XPath/tests/project.json index dfaf2e3fc545..1113112e03d7 100644 --- a/src/System.Xml.XPath/tests/project.json +++ b/src/System.Xml.XPath/tests/project.json @@ -1,17 +1,17 @@ { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Text.Encoding.CodePages": "4.0.1-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XmlDocument/src/project.json b/src/System.Xml.XmlDocument/src/project.json index f513f730fbac..10e8f6d8f2d9 100644 --- a/src/System.Xml.XmlDocument/src/project.json +++ b/src/System.Xml.XmlDocument/src/project.json @@ -2,7 +2,7 @@ "frameworks": { "netstandard1.3": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", "System.Collections": "4.0.10", "System.Diagnostics.Debug": "4.0.10", "System.Diagnostics.Tools": "4.0.0", diff --git a/src/System.Xml.XmlDocument/tests/project.json b/src/System.Xml.XmlDocument/tests/project.json index c0bdc84ec24b..ab34a9f5fe98 100644 --- a/src/System.Xml.XmlDocument/tests/project.json +++ b/src/System.Xml.XmlDocument/tests/project.json @@ -1,12 +1,12 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/System.Xml.XmlSerializer/tests/project.json b/src/System.Xml.XmlSerializer/tests/project.json index c3e750a34ee9..e953d3033eb2 100644 --- a/src/System.Xml.XmlSerializer/tests/project.json +++ b/src/System.Xml.XmlSerializer/tests/project.json @@ -1,23 +1,23 @@ { "dependencies": { "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0029", - "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-00", - "System.Collections": "4.0.11-rc3-23925-00", - "System.Diagnostics.Debug": "4.0.11-rc3-23925-00", - "System.Diagnostics.Tools": "4.0.1-rc3-23925-00", - "System.Globalization": "4.0.11-rc3-23925-00", - "System.IO": "4.1.0-rc3-23925-00", - "System.Linq": "4.1.0-rc3-23925-00", - "System.Linq.Expressions": "4.0.11-rc3-23925-00", - "System.ObjectModel": "4.0.12-rc3-23925-00", - "System.Reflection": "4.1.0-rc3-23925-00", - "System.Runtime": "4.1.0-rc3-23925-00", - "System.Runtime.Extensions": "4.1.0-rc3-23925-00", - "System.Text.Encoding": "4.0.11-rc3-23925-00", - "System.Threading.Tasks": "4.0.11-rc3-23925-00", - "System.Xml.ReaderWriter": "4.0.11-rc3-23925-00", - "System.Xml.XDocument": "4.0.11-rc3-23925-00", - "System.Xml.XmlDocument": "4.0.1-rc3-23925-00", + "Microsoft.NETCore.Platforms": "1.0.1-rc3-23925-01", + "System.Collections": "4.0.11-rc3-23925-01", + "System.Diagnostics.Debug": "4.0.11-rc3-23925-01", + "System.Diagnostics.Tools": "4.0.1-rc3-23925-01", + "System.Globalization": "4.0.11-rc3-23925-01", + "System.IO": "4.1.0-rc3-23925-01", + "System.Linq": "4.1.0-rc3-23925-01", + "System.Linq.Expressions": "4.0.11-rc3-23925-01", + "System.ObjectModel": "4.0.12-rc3-23925-01", + "System.Reflection": "4.1.0-rc3-23925-01", + "System.Runtime": "4.1.0-rc3-23925-01", + "System.Runtime.Extensions": "4.1.0-rc3-23925-01", + "System.Text.Encoding": "4.0.11-rc3-23925-01", + "System.Threading.Tasks": "4.0.11-rc3-23925-01", + "System.Xml.ReaderWriter": "4.0.11-rc3-23925-01", + "System.Xml.XDocument": "4.0.11-rc3-23925-01", + "System.Xml.XmlDocument": "4.0.1-rc3-23925-01", "xunit": "2.1.0", "xunit.netcore.extensions": "1.0.0-prerelease-00187" }, diff --git a/src/dirs.proj b/src/dirs.proj index ee86c07d71c4..556bbc7c50af 100644 --- a/src/dirs.proj +++ b/src/dirs.proj @@ -4,7 +4,6 @@ - diff --git a/src/tests.builds b/src/tests.builds index 3378c009f281..c1fd23c24f82 100644 --- a/src/tests.builds +++ b/src/tests.builds @@ -1,6 +1,16 @@ + + + <_OriginalOSGroup>$(OSGroup) + + + + + $(OSEnvironment) + + diff --git a/sync.sh b/sync.sh old mode 100644 new mode 100755 index 105cd74582d5..739c8c9b863d --- a/sync.sh +++ b/sync.sh @@ -51,7 +51,7 @@ $working_tree_root/init-tools.sh if [ "$sync_src" == true ]; then echo "Fetching git database from remote repos..." - git fetch --all -p -v &>> $sync_log + git fetch --all -p -v >> $sync_log 2>&1 if [ $? -ne 0 ]; then echo -e "\ngit fetch failed. Aborting sync." >> $sync_log echo "ERROR: An error occurred while fetching remote source code; see $sync_log for more details."