diff --git a/Runtime.msbuild b/Runtime.msbuild
index 2e785ab2e..4999f6a4f 100644
--- a/Runtime.msbuild
+++ b/Runtime.msbuild
@@ -11,7 +11,7 @@
true
true
false
- $(BuildInParallel)
+ false
$(MSBuildThisFileDirectory)bin\$(Configuration)\test\TestResults\
$(MSBuildThisFileDirectory)packages\Microsoft.Web.SkipStrongNames.1.0.0\tools\SkipStrongNames.exe
$(MSBuildThisFileDirectory)tools\SkipStrongNames.xml
@@ -65,25 +65,24 @@
- <_NuGetPackagesAndSolutions Include="src\System.Net.Http.Formatting.NetCore\packages.config;
- test\System.Net.Http.Formatting.NetCore.Test\packages.config;
- Runtime.sln" />
+ <_NuGetPackagesAndSolutions Include="Runtime.sln" />
<_NuGetPackagesAndSolutions Include="src\System.Net.Http.Formatting.NetCore\packages.config;
test\System.Net.Http.Formatting.NetCore.Test\packages.config"
Condition=" '$(BuildPortable)' == 'true' " />
- <_ProjectsToRestore Include="src\System.Net.Http.Formatting.NetStandard\System.Net.Http.Formatting.NetStandard.csproj;
- test\System.Net.Http.Formatting.NetStandard.Test\System.Net.Http.Formatting.NetStandard.Test.csproj"
+ <_ProjectsToRestore Include="test\System.Net.Http.Formatting.NetStandard.Test\System.Net.Http.Formatting.NetStandard.Test.csproj"
Condition=" '$(BuildPortable)' == 'true' " />
-
+ -Verbosity quiet -ConfigFile "$(MSBuildThisFileDirectory)\.nuget\NuGet.Config"' />
+
@@ -110,9 +109,7 @@
Properties="Configuration=$(Configuration);CodeAnalysis=$(CodeAnalysis);StyleCopEnabled=$(StyleCopEnabled);VisualStudioVersion=$(VisualStudioVersion)" />
-
-
-
+
@@ -128,7 +125,9 @@
-
+
+
+
-
+
+
+
+
diff --git a/build.cmd b/build.cmd
index a5ca225d4..5a6a4f8f9 100644
--- a/build.cmd
+++ b/build.cmd
@@ -40,12 +40,14 @@ if exist "%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" (
if "%1" == "" goto BuildDefaults
-%MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal /t:%*
+%MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M ^
+ /fl /fileLoggerParameters:LogFile=bin\msbuild.log;Verbosity=Normal /consoleLoggerParameters:Summary /t:%*
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
:BuildDefaults
-%MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal
+%MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M ^
+ /fl /fileLoggerParameters:LogFile=bin\msbuild.log;Verbosity=Normal /consoleLoggerParameters:Summary
if %ERRORLEVEL% neq 0 goto BuildFail
goto BuildSuccess
diff --git a/src/Common/CollectionExtensions.cs b/src/Common/CollectionExtensions.cs
index c89d4ad98..bfd1eb61d 100644
--- a/src/Common/CollectionExtensions.cs
+++ b/src/Common/CollectionExtensions.cs
@@ -27,7 +27,7 @@ public static T[] AppendAndReallocate(this T[] array, T value)
}
///
- /// Return the enumerable as an Array, copying if required. Optimized for common case where it is an Array.
+ /// Return the enumerable as an Array, copying if required. Optimized for common case where it is an Array.
/// Avoid mutating the return value.
///
public static T[] AsArray(this IEnumerable values)
@@ -43,7 +43,7 @@ public static T[] AsArray(this IEnumerable values)
}
///
- /// Return the enumerable as a Collection of T, copying if required. Optimized for the common case where it is
+ /// Return the enumerable as a Collection of T, copying if required. Optimized for the common case where it is
/// a Collection of T and avoiding a copy if it implements IList of T. Avoid mutating the return value.
///
public static Collection AsCollection(this IEnumerable enumerable)
@@ -78,9 +78,9 @@ public static IList AsIList(this IEnumerable enumerable)
}
return new List(enumerable);
}
-
+
///
- /// Return the enumerable as a List of T, copying if required. Optimized for common case where it is an List of T
+ /// Return the enumerable as a List of T, copying if required. Optimized for common case where it is an List of T
/// or a ListWrapperCollection of T. Avoid mutating the return value.
///
public static List AsList(this IEnumerable enumerable)
diff --git a/src/Common/CommonWebApiResources.Designer.cs b/src/Common/CommonWebApiResources.Designer.cs
index 4ceb3f115..251eed2b4 100644
--- a/src/Common/CommonWebApiResources.Designer.cs
+++ b/src/Common/CommonWebApiResources.Designer.cs
@@ -24,15 +24,15 @@ namespace System.Web.Http.Properties {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class CommonWebApiResources {
-
+
private static global::System.Resources.ResourceManager resourceMan;
-
+
private static global::System.Globalization.CultureInfo resourceCulture;
-
+
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal CommonWebApiResources() {
}
-
+
///
/// Returns the cached ResourceManager instance used by this class.
///
@@ -59,7 +59,7 @@ internal CommonWebApiResources() {
return resourceMan;
}
}
-
+
///
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
@@ -73,7 +73,7 @@ internal CommonWebApiResources() {
resourceCulture = value;
}
}
-
+
///
/// Looks up a localized string similar to Relative URI values are not supported: '{0}'. The URI must be absolute..
///
@@ -82,7 +82,7 @@ internal static string ArgumentInvalidAbsoluteUri {
return ResourceManager.GetString("ArgumentInvalidAbsoluteUri", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to Unsupported URI scheme: '{0}'. The URI scheme must be either '{1}' or '{2}'..
///
@@ -91,7 +91,7 @@ internal static string ArgumentInvalidHttpUriScheme {
return ResourceManager.GetString("ArgumentInvalidHttpUriScheme", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to Value must be greater than or equal to {0}..
///
@@ -100,7 +100,7 @@ internal static string ArgumentMustBeGreaterThanOrEqualTo {
return ResourceManager.GetString("ArgumentMustBeGreaterThanOrEqualTo", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to Value must be less than or equal to {0}..
///
@@ -109,7 +109,7 @@ internal static string ArgumentMustBeLessThanOrEqualTo {
return ResourceManager.GetString("ArgumentMustBeLessThanOrEqualTo", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to The argument '{0}' is null or empty..
///
@@ -118,7 +118,7 @@ internal static string ArgumentNullOrEmpty {
return ResourceManager.GetString("ArgumentNullOrEmpty", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to URI must not contain a query component or a fragment identifier..
///
@@ -127,7 +127,7 @@ internal static string ArgumentUriHasQueryOrFragment {
return ResourceManager.GetString("ArgumentUriHasQueryOrFragment", resourceCulture);
}
}
-
+
///
/// Looks up a localized string similar to The value of argument '{0}' ({1}) is invalid for Enum type '{2}'..
///
diff --git a/src/Common/Error.cs b/src/Common/Error.cs
index 0e8c83465..b6013c5dc 100644
--- a/src/Common/Error.cs
+++ b/src/Common/Error.cs
@@ -74,7 +74,7 @@ internal static ArgumentException ArgumentUriNotAbsolute(string parameterName, U
}
///
- /// Creates an with a message saying that the argument must be an absolute URI
+ /// Creates an with a message saying that the argument must be an absolute URI
/// without a query or fragment identifier and then logs it with .
///
/// The name of the parameter that caused the current exception.
diff --git a/src/Microsoft.AspNet.Facebook/Microsoft.AspNet.Facebook.csproj b/src/Microsoft.AspNet.Facebook/Microsoft.AspNet.Facebook.csproj
index 7e0f0f6ba..12642c354 100644
--- a/src/Microsoft.AspNet.Facebook/Microsoft.AspNet.Facebook.csproj
+++ b/src/Microsoft.AspNet.Facebook/Microsoft.AspNet.Facebook.csproj
@@ -26,8 +26,8 @@
False
..\..\packages\Facebook.6.4.2\lib\net45\Facebook.dll
-
- ..\..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll
+
+ ..\..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
False
False
diff --git a/src/Microsoft.AspNet.Facebook/packages.config b/src/Microsoft.AspNet.Facebook/packages.config
index 613e222f9..102ce84aa 100644
--- a/src/Microsoft.AspNet.Facebook/packages.config
+++ b/src/Microsoft.AspNet.Facebook/packages.config
@@ -2,5 +2,5 @@
-
+
\ No newline at end of file
diff --git a/src/System.Net.Http.Formatting.NetCore/System.Net.Http.Formatting.NetCore.csproj b/src/System.Net.Http.Formatting.NetCore/System.Net.Http.Formatting.NetCore.csproj
index 364d375d4..e579c5926 100644
--- a/src/System.Net.Http.Formatting.NetCore/System.Net.Http.Formatting.NetCore.csproj
+++ b/src/System.Net.Http.Formatting.NetCore/System.Net.Http.Formatting.NetCore.csproj
@@ -254,7 +254,7 @@
- ..\..\packages\Newtonsoft.Json.6.0.4\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll
+ ..\..\packages\Newtonsoft.Json.13.0.1\lib\netstandard1.0\Newtonsoft.Json.dll
..\..\packages\Microsoft.Net.Http.2.2.13\lib\portable-net40+sl4+win8+wp71\System.Net.Http.dll
@@ -266,7 +266,7 @@
..\..\packages\Microsoft.Net.Http.2.2.13\lib\portable-net40+sl4+win8+wp71\System.Net.Http.Primitives.dll
-
+
-
-
+
+
+
+
-
-
-
-
-
-
-
\ No newline at end of file
+
+ <_ExitCodes Include="$(TestAssembly)" Code="$(_ExitCode)" />
+
+
+