BUILD: Fixed .NET v4 dependecy deployment on Windows Server 2008/2012 in WebPI template
This commit is contained in:
parent
2b45a5d223
commit
b797d91ec3
2 changed files with 13 additions and 22 deletions
|
@ -3,11 +3,6 @@
|
|||
<webpiFile version="4.0.0.0" />
|
||||
|
||||
<title>WebsitePanel :: Web Platform Installer 4.0 Feed</title>
|
||||
<link rel="enclosure" href="https://www.microsoft.com/web/webpi/4.0/webapplicationlist.xml" />
|
||||
<link rel="enclosure" href="https://www.microsoft.com/web/webpi/4.0/mediaproductlist.xml" />
|
||||
<link rel="enclosure" href="https://www.microsoft.com/web/webpi/4.0/toolsproductlist.xml" />
|
||||
<link rel="enclosure" href="https://www.microsoft.com/web/webpi/4.0/enterpriseproductlist.xml" />
|
||||
<link href="http://www.microsoft.com/web/webpi/4.0/WebProductList.xml" />
|
||||
<updated>${ReleaseDate}</updated>
|
||||
<author>
|
||||
<name>Outercurve Foundation</name>
|
||||
|
@ -60,27 +55,23 @@
|
|||
<productId>ManagementService</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<or>
|
||||
<dependency>
|
||||
<productId>NETFramework4</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<productId>NETFX4</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<productId>NETFramework45</productId>
|
||||
</dependency>
|
||||
<!--the following two will install 4.5. We should remove the following when .Net 4.5 is a real installer-->
|
||||
<dependency>
|
||||
<productId>VWD11_Only_BaseLocale</productId>
|
||||
</dependency>
|
||||
</or>
|
||||
<!-- This installs .NET v4 on Windows Server 2008 -->
|
||||
<productId>NETFramework4</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- This enables IIS to host ASP.NET v4 content on Windows Server 2012 -->
|
||||
<productId>ASPNET45</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<!-- This enables IIS to host ASP.NET v4 content on Windows Server 2008/R2 -->
|
||||
<productId>ASPNET_REGIIS_NET4</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<productId>SQLExpress</productId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<productId>WDeploy_2_1</productId>
|
||||
<!-- Installs Web Deploy 3.0 -->
|
||||
<productId>WDeploy</productId>
|
||||
</dependency>
|
||||
</and>
|
||||
</dependency>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<Version>2.0.0</Version>
|
||||
<FileVersion>$(BUILD_NUMBER)</FileVersion>
|
||||
<VersionLabel>$(BUILD_NUMBER)</VersionLabel>
|
||||
<ReleaseDate>2012-09-09</ReleaseDate>
|
||||
<ReleaseDate>2012-12-07</ReleaseDate>
|
||||
<BuildConfiguration></BuildConfiguration>
|
||||
<RootFolder>..</RootFolder>
|
||||
<TrunkFolder>$(RootFolder)\WebsitePanel</TrunkFolder>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue