Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidmatson <dmatson@microsoft.com>2012-10-26 22:46:47 +0400
committerdavidmatson <dmatson@microsoft.com>2012-10-31 22:19:47 +0400
commit833cc5261fba3be8fa3a8284847f2ef9ebaffd0d (patch)
treefccd9f55e8569f6981eb0fceb92e9852ffe8e32e
parentc942cabd8a5d280672c288f43fab59e85f11c6da (diff)
Fix build after clean.
Fix version discrepancy between csproj and packages for Newtonsoft.Json. Packages.config says 4.5.6 but HintPath in csproj had 4.5.9. Fixing this discrepancy allows the first build.cmd after git clean -xdf to succeed; previously, it failed.
-rw-r--r--src/Microsoft.AspNet.Mvc.Facebook/Microsoft.AspNet.Mvc.Facebook.csproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Microsoft.AspNet.Mvc.Facebook/Microsoft.AspNet.Mvc.Facebook.csproj b/src/Microsoft.AspNet.Mvc.Facebook/Microsoft.AspNet.Mvc.Facebook.csproj
index 533a1f8a..bd9f7ad1 100644
--- a/src/Microsoft.AspNet.Mvc.Facebook/Microsoft.AspNet.Mvc.Facebook.csproj
+++ b/src/Microsoft.AspNet.Mvc.Facebook/Microsoft.AspNet.Mvc.Facebook.csproj
@@ -44,7 +44,7 @@
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
- <HintPath>..\..\packages\Newtonsoft.Json.4.5.9\lib\net40\Newtonsoft.Json.dll</HintPath>
+ <HintPath>..\..\packages\Newtonsoft.Json.4.5.6\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />