In this episode of 10-4, we'll look at new features coming in Visual Studio 2010 that make deploying web applications a lot easier. We'll look at web.config transformations, the Microsoft web deployment tool and web one-click deployment. For more 10-4 episodes, be sure to visit: http://channel9.msdn.com/shows/10-4
Information on the Web Deployment Tool: http://www.iis.net/extensions/WebDeploymentTool PDC Session by Vishal Joshi on Visual Studio 2010 Web Deployment: http://channel9.msdn.com/pdc2008/PC33/ Visual Studio Topic Area on Channel 9: http://channel9.msdn.com/VisualStudio
Visual Studio 2010 CTP VPC: http://tinyurl.com/GetCTP
10-4! Over and out!
Daniel, Glad to know that you like the new UI... That was our goal as well... There are tiny yeh!! and nah!! all over the place but trust me the usability team over here spent a tons of time in looking into usability in great detail to come up with all the new models... About app.config, we have heard that request and if you can send me an email @ vishal.joshi@microsoft.com on this then I will try to follow up with appropriate people to see if we can consider doing it... Essentially more the votes the easier it is to push up the priority...-Vishal
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/configuration/appSettings">
<xsl:apply-templates select="node()|@*"/>
<xsl:element name="add">
<xsl:attribute name="key">NewSetting</xsl:attribute>
<xsl:attribute name="value">New Setting Value</xsl:attribute>
</xsl:element>
</xsl:stylesheet>
God bless you..it made program life so easy
You are correct. The syntax that matches the web.config format is a lot easier for people to understand who aren't familiar with XSLT.