Skip to content

Commit

Permalink
MVC 3 builds wouldn't compile on machines without Windows Update MS14…
Browse files Browse the repository at this point in the history
…-059 with the previous patch (84f43d2). This patch makes the build work whether or not the Windows Update is installed on the build machine, with the caveat that when the update is on the build machine, it must also be on the target machines as well. Otherwise, it the binaries will work in either environment.
  • Loading branch information
NightOwl888 committed Nov 3, 2014
1 parent 2087df5 commit 498feab
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -49,7 +49,9 @@
<Reference Include="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup Condition=" $(DefineConstants.Contains('MVC3')) ">
<Reference Include="System.Web.Mvc, Version=3.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<!-- Due to the windows update MS14-059, we need this hack to ensure we can build MVC3 both on machines that have the update and those that don't -->
<Reference Condition=" Exists('$(windir)\Microsoft.NET\assembly\GAC_MSIL\System.Web.Mvc\v4.0_3.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll') " Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
<Reference Condition=" !Exists('$(windir)\Microsoft.NET\assembly\GAC_MSIL\System.Web.Mvc\v4.0_3.0.0.0__31bf3856ad364e35\System.Web.Mvc.dll') " Include="System.Web.Mvc, Version=3.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<Private>True</Private>
<HintPath>..\packages\Microsoft.AspNet.Mvc.3.0.20105.1\lib\net40\System.Web.Mvc.dll</HintPath>
</Reference>
Expand Down

0 comments on commit 498feab

Please sign in to comment.