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