Microsoft MVC 2.0 RTM for ASP.NET
From WPKG | Open Source Software Deployment and Distribution
Model-View-Controller (MVC) framework for ASP.NET. Can be downloaded from here.
The first workable solution I found was to extract the msi's from the exe and install them seperately...
<packages xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.wpkg.org/packages xsd\packages.xsd"> <package id="MVC2RTM" name="Microsoft MVC 2.0 RTM for ASP.NET" revision="1" reboot="false" > <check type="uninstall" condition="exists" path="Microsoft ASP.NET MVC 2" /> <check type="uninstall" condition="exists" path="Microsoft ASP.NET MVC 2 - Visual Studio 2008 Tools" /> <depends package-id="dotnet35sp1" /> <install cmd="xcopy /Y "\\enterprise\applications\MVC\AspNetMVC2_RTM_VS2008.exe" c:\downloads\provisioning" /> <!-- extract the individual msi's --> <install cmd="c:\downloads\provisioning\AspNetMVC2_RTM_VS2008.exe /q /x:c:\downloads\provisioning\mvc2" /> <!-- separate silent installs --> <install cmd="msiexec /quiet /i c:\downloads\provisioning\mvc2\mvcruntime\aspnetmvc2.msi" /> <install cmd="msiexec /quiet /i c:\downloads\provisioning\mvc2\mvctoolsvs2008\vs2008toolsmvc2.msi" /> </package>