Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ab4b47d
Fixes to DW in OSX
maririos Mar 25, 2016
c86794e
Cleanup TextInfo tests
hughbe Mar 26, 2016
5bcbf0a
Reduce allocations in CookieContainer.GetCookieHeader
stephentoub Mar 27, 2016
7986217
Use nameof in System.Collections.*
eadordzhiev Mar 28, 2016
8fcc991
Update ExceptionUtils.vb
markhurd Mar 28, 2016
26e83ae
Merge pull request #7257 from maririos/dw
jhendrixMSFT Mar 28, 2016
12845be
Add default CMake installation path to probe script.
jhendrixMSFT Mar 28, 2016
17d500d
Redirect 'git fetch' output to log
naamunds Mar 28, 2016
2ec850a
Fixes to build-packages scripts
jhendrixMSFT Mar 28, 2016
c2e3534
Use nameof in Common
jamesqo Mar 29, 2016
898aae3
Merge pull request #7297 from markhurd/patch-1
stephentoub Mar 29, 2016
59d66dc
Merge pull request #7296 from eadordzhiev/nameof-collections
stephentoub Mar 29, 2016
b0935d2
Merge pull request #7307 from jhendrixMSFT/master
jhendrixMSFT Mar 29, 2016
01e5c74
Port Cookie changes to Http's cookie.cs
stephentoub Mar 29, 2016
0718ba9
Merge pull request #7278 from hughbe/text-info-cleanup
stephentoub Mar 29, 2016
36e9d05
Merge pull request #7056 from eerhardt/DependencyVersions
eerhardt Mar 29, 2016
0cc9c88
Cleanup CultureInfo tests
hughbe Feb 22, 2016
8b72228
Remove unnecessary branches in UrlDecoder
hughbe Mar 26, 2016
38b3aeb
Merge pull request #7291 from jamesqo/common-nameof
davidsh Mar 29, 2016
f22362d
Merge pull request #7285 from stephentoub/cookie_allocs
stephentoub Mar 29, 2016
1d35de1
Merge pull request #6683 from hughbe/globalization-tests-culture-info
stephentoub Mar 29, 2016
2d4dcfa
Merge pull request #7272 from hughbe/patch-1
davidsh Mar 29, 2016
ab8471d
Create build-tests.cmd with new property BuilTests to disable building
maririos Mar 25, 2016
77f0b11
Merge pull request #7312 from naamunds/FixSyncLogging
naamunds Mar 29, 2016
814247f
Merge pull request #7237 from maririos/testOutsideB
maririos Mar 29, 2016
95bfb2a
Updating CoreFX dependencies to rc3-23925-01
dotnet-bot Mar 29, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions build-packages.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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] (
Expand Down
6 changes: 5 additions & 1 deletion build-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
24 changes: 24 additions & 0 deletions build-tests.cmd
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,16 @@
<RestoreDuringBuild Condition="'$(RestoreDuringBuild)'==''">true</RestoreDuringBuild>
<!-- To disable building packages, set BuildPackages=false or pass /p:BuildPackages=false.-->
<BuildPackages Condition="'$(BuildPackages)'==''">true</BuildPackages>
<!-- To disable building tests, set BuildTests=false or pass /p:BuildTests=false.-->
<BuildTests Condition="'$(BuildTests)'==''">true</BuildTests>
</PropertyGroup>

<ItemGroup>
<Project Include="src\dirs.proj">
<!-- For the root traversal default filter the OSGroup to the OSEnvironment which is the OS we are running on -->
<FilterToOSGroup Condition="'$(_OriginalOSGroup)' == ''">$(OSEnvironment)</FilterToOSGroup>
</Project>
<Project Include="src\tests.builds" Condition="$(BuildTests)=='true'"/>
<!-- signing must happen before packaging -->
<Project Include="src\sign.builds" />
<Project Include="src\packages.builds" Condition="'$(BuildPackages)'=='true'"/>
Expand Down
2 changes: 1 addition & 1 deletion dir.props
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<PropertyGroup>
<ValidatePackageVersions>true</ValidatePackageVersions>
<ProhibitFloatingDependencies>true</ProhibitFloatingDependencies>
<CoreFxExpectedPrerelease>rc3-23925-00</CoreFxExpectedPrerelease>
<CoreFxExpectedPrerelease>rc3-23925-01</CoreFxExpectedPrerelease>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions init-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ case $OSName in
Darwin)
OS=OSX
__DOTNET_PKG=dotnet-osx-x64
ulimit -n 2048
;;

Linux)
Expand Down
24 changes: 12 additions & 12 deletions src/Common/src/Interop/Windows/sspicli/SSPIWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal static SecurityPackageInfoClass[] EnumerateSecurityPackages(SSPIInterfa
{
if (GlobalLog.IsEnabled)
{
GlobalLog.Enter("EnumerateSecurityPackages");
GlobalLog.Enter(nameof(EnumerateSecurityPackages));
}

if (secModule.SecurityPackages == null)
Expand Down Expand Up @@ -66,7 +66,7 @@ internal static SecurityPackageInfoClass[] EnumerateSecurityPackages(SSPIInterfa

if (GlobalLog.IsEnabled)
{
GlobalLog.Leave("EnumerateSecurityPackages");
GlobalLog.Leave(nameof(EnumerateSecurityPackages));
}
return secModule.SecurityPackages;
}
Expand Down Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand All @@ -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;
}
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/Common/src/System/Globalization/IdnMapping.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public override bool IsInvalid
/// <exception cref="ArgumentOutOfRangeException">Thrown if size is greater than the maximum memory size.</exception>
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)
Expand Down
12 changes: 6 additions & 6 deletions src/Common/src/System/Xml/Schema/XmlUntypedConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -270,31 +270,31 @@ 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;
}

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;
}

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;
}

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;
}
Expand Down Expand Up @@ -336,15 +336,15 @@ 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;
}

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;
}
Expand Down
4 changes: 2 additions & 2 deletions src/Common/src/System/Xml/XmlConvertEx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
8 changes: 4 additions & 4 deletions src/Common/test-runtime/project.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
@@ -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": {}
Expand Down
4 changes: 2 additions & 2 deletions src/Common/tests/System/Xml/BaseLibManaged/project.json
Original file line number Diff line number Diff line change
@@ -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": {}
Expand Down
14 changes: 7 additions & 7 deletions src/Common/tests/System/Xml/ModuleCore/project.json
Original file line number Diff line number Diff line change
@@ -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": {}
Expand Down
18 changes: 9 additions & 9 deletions src/Common/tests/System/Xml/XmlCoreTest/project.json
Original file line number Diff line number Diff line change
@@ -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": {}
Expand Down
12 changes: 6 additions & 6 deletions src/Common/tests/System/Xml/XmlDiff/project.json
Original file line number Diff line number Diff line change
@@ -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": {}
Expand Down
Loading