<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Comment Feed for 10-4 Episode 10: Making Web Deployment Easier (10-4 on Channel 9)</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/shows/10-4/10-4-episode-10-making-web-deployment-easier/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Comment Feed for 10-4 Episode 10: Making Web Deployment Easier (10-4 on Channel 9)</title><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/</link></image><description>10-4 Episode 10: Making Web Deployment Easier</description><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/</link><language>en-us</language><pubDate>Tue, 07 Jul 2009 16:42:34 GMT</pubDate><lastBuildDate>Tue, 07 Jul 2009 16:42:34 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Re: Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;p&gt;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.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=477270</link><pubDate>Tue, 07 Jul 2009 16:42:34 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=477270</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/477270/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>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.</evnet:previewtext><dc:creator>Drew Robbins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/477270/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;p&gt;God bless you..it made program life so easy&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=473884</link><pubDate>Mon, 15 Jun 2009 18:28:11 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=473884</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/473884/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>God bless you..it made program life so easy</evnet:previewtext><dc:creator>unlock iphone</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/473884/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>JoeChung,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I talked about this at PDC as jgd12345 is mentioning...&amp;nbsp; Anyways to give you an idea&amp;nbsp; if you want to&amp;nbsp;a appsetting&amp;nbsp;in web.config during deployment you will have to write below code with XSLT&lt;BR&gt;&amp;nbsp; 
&lt;P&gt;&amp;lt;?xml version="1.0" ?&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;xsl:template match="@*|node()"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;xsl:copy&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:apply-templates select="@*|node()"/&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/xsl:copy&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/xsl:template&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;xsl:template match="/configuration/appSettings"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;xsl:copy&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:apply-templates select="node()|@*"/&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:element name="add"&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:attribute name="key"&amp;gt;NewSetting&amp;lt;/xsl:attribute&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xsl:attribute name="value"&amp;gt;New Setting Value&amp;lt;/xsl:attribute&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xsl:element&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;lt;/xsl:copy&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/xsl:template&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;lt;/xsl:stylesheet&amp;gt;&lt;/P&gt;&lt;BR&gt;with Xml Document Transform you will just have to write&lt;STRONG&gt; xdt:Transform=”Insert”&lt;/STRONG&gt; next to the appsetting node you would like to insert...&amp;nbsp; Essentially huge simplicity is one of the big reasons for doing so...&lt;BR&gt;&lt;BR&gt;Additionally you can write your own transform which can be &lt;STRONG&gt;xdt:Transform="XSLT" &lt;/STRONG&gt;and invoke XSLT if you like...&lt;BR&gt;&lt;BR&gt;Hope this helps!!&lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461378</link><pubDate>Wed, 18 Mar 2009 06:22:33 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461378</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461378/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>JoeChung,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I talked about this at PDC as jgd12345 is mentioning...&amp;nbsp; Anyways to give you an idea&amp;nbsp; if you want to&amp;nbsp;a appsetting&amp;nbsp;in web.config during deployment you will have to write below code with XSLT&amp;nbsp; 
&amp;lt;?xml version="1.0"&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461378/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;A href="http://channel9.msdn.com/Niners/Moemeka /&gt;Moemeka&lt;/A&gt; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You will soon be able to get your hands on the new UI... It is worth the wait... :-)&lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461377</link><pubDate>Wed, 18 Mar 2009 06:16:59 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461377</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461377/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Moemeka &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; You will soon be able to get your hands on the new UI... It is worth the wait... :-)-Vishal</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461377/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Hi Ericmatz,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I would like to understand your scenario better about trying to keep Staging, Testing etc configuration in sync with Release configuration... Could you please drop me an email at &lt;A href="http://channel9.msdn.commailto:vishal.joshi@microsoft.com&gt;vishal.joshi@microsoft.com&lt;/A&gt;... Thanks much...&lt;BR&gt;&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461376</link><pubDate>Wed, 18 Mar 2009 06:15:54 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461376</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461376/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi Ericmatz,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I would like to understand your scenario better about trying to keep Staging, Testing etc configuration in sync with Release configuration... Could you please drop me an email at vishal.joshi@microsoft.com... Thanks much...Vishal</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461376/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;P&gt;Daniel,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Glad to know that you like the new UI... That was our goal as well...&amp;nbsp; 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...&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; About app.config, we have heard that request and if you can send me an email @ &lt;A href="http://channel9.msdn.commailto:vishal.joshi@microsoft.com&gt;vishal.joshi@microsoft.com&lt;/A&gt; on this then I will try to follow up with appropriate people to see if we can consider doing it...&amp;nbsp; Essentially more the votes the easier it is to push up the priority...:-)&lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;&lt;/P&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461374</link><pubDate>Wed, 18 Mar 2009 05:32:54 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461374</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461374/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Daniel,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Glad to know that you like the new UI... That was our goal as well...&amp;nbsp; 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&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461374/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>C S S,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I would like to understand your scenario better and try to make sure that our team tries to address it although currently I am unable to understand it clearly...&amp;nbsp; Can you please write me an email at &lt;A href="http://channel9.msdn.commailto:vishal.joshi@microsoft.com&gt;vishal.joshi@microsoft.com&lt;/A&gt; or call me at +1-425-705-2031 and I will be happy to discuss your scenario in detail...&amp;nbsp; &lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461372</link><pubDate>Wed, 18 Mar 2009 05:27:12 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461372</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461372/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>C S S,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I would like to understand your scenario better and try to make sure that our team tries to address it although currently I am unable to understand it clearly...&amp;nbsp; Can you please write me an email at vishal.joshi@microsoft.com or call me at&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461372/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Shreedhar,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; In a way what you want will be possible with Web Packaging, there are tiny bit of manual steps involved but them aside it is certainly feasible... You can get a glimpse of what all is possible using MSBuild, commandline and Team Build integration by reading the below blog post about &lt;A title=http://vishaljoshi.blogspot.com/2009/03/web-packaging-installing-web-packages.html href="http://vishaljoshi.blogspot.com/2009/03/web-packaging-installing-web-packages.html"&gt;Creation and Deployment of MsDeploy package using Command line&lt;/A&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Eventually I am hoping to write a blog post to accomplish exactly what you are looking for, hope so that I will get to it soon enough...&lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com/ href="http://vishaljoshi.blogspot.com/"&gt;Vishal&lt;/A&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461371</link><pubDate>Wed, 18 Mar 2009 05:23:38 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461371</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461371/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Shreedhar,&amp;nbsp;&amp;nbsp;&amp;nbsp; In a way what you want will be possible with Web Packaging, there are tiny bit of manual steps involved but them aside it is certainly feasible... You can get a glimpse of what all is possible using MSBuild, commandline and Team Build integration by reading the below&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461371/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;P&gt;Slace,&lt;BR&gt;Yes MSDeploy Publish feature will be accessible via MSBuild as well so setting up CI with it will be possibly...&lt;BR&gt;-&lt;A title=http://vishaljoshi.blogspot.com href="http://vishaljoshi.blogspot.com"&gt;Vishal&lt;/A&gt;&lt;/P&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461370</link><pubDate>Wed, 18 Mar 2009 05:18:26 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461370</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461370/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Slace,Yes MSDeploy Publish feature will be accessible via MSBuild as well so setting up CI with it will be possibly...-Vishal</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461370/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Vaso,&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Using Visual Studio 2010 you will be able to exclude test files and folders from deployment...&amp;nbsp; I am hoping to write a blog post on this soon...&amp;nbsp; In the meantime if you want to follow more details on how MSDeploy integration works with VS 10 you can read the below blog post series... &lt;A href="http://vishaljoshi.blogspot.com/2009/03/web-packaging-installing-web-packages.html"&gt;http://vishaljoshi.blogspot.com/2009/03/web-packaging-installing-web-packages.html&lt;/A&gt;&lt;BR&gt;-Vishal</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461369</link><pubDate>Wed, 18 Mar 2009 05:15:43 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=461369</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/461369/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Vaso,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Using Visual Studio 2010 you will be able to exclude test files and folders from deployment...&amp;nbsp; I am hoping to write a blog post on this soon...&amp;nbsp; In the meantime if you want to follow more details on how MSDeploy integration works with VS 10 you can read the&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/461369/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Will it be possible to access the publish features via MSBuild directly? It would be great if they could be utilised by the TFS Build Server for CI</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459925</link><pubDate>Thu, 05 Mar 2009 23:06:05 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459925</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459925/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Will it be possible to access the publish features via MSBuild directly? It would be great if they could be utilised by the TFS Build Server for CI</evnet:previewtext><dc:creator>Aaron Powell</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459925/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;P&gt;Really helpful feature. Thanks for adding this in.&lt;BR&gt;&lt;BR&gt;I was wondering if the onclick deployment&amp;nbsp;feature can be extended with custom steps to meet policy requirements in an Enterprise. For example I cannot do a direct deploy to CONS/DAY1/PROD my self from my box, I cannot even connect to it. If it is possible for me to publish the PROD builds to a local directory then run some custom step which can zip it, check it into a predefined VSS, label it and send a notfication to environment engineers that would be super cool :) ... may be its too much to ask for, but just my wishlist!&lt;/P&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459807</link><pubDate>Thu, 05 Mar 2009 06:52:44 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459807</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459807/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Really helpful feature. Thanks for adding this in.I was wondering if the onclick deployment&amp;nbsp;feature can be extended with custom steps to meet policy requirements in an Enterprise. For example I cannot do a direct deploy to CONS/DAY1/PROD my self from my box, I cannot even connect to it. If it&amp;#8230;</evnet:previewtext><dc:creator>Shreedhar Kotekar</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459807/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>I don't think I follow. The settings in the transformation are specific to the target environment, so you wouldn't need to keep them in sync between staging and production.</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459489</link><pubDate>Tue, 03 Mar 2009 05:14:10 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459489</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459489/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I don't think I follow. The settings in the transformation are specific to the target environment, so you wouldn't need to keep them in sync between staging and production.</evnet:previewtext><dc:creator>Drew Robbins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459489/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Unfortunately, this is for web.config only.</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459406</link><pubDate>Mon, 02 Mar 2009 22:12:29 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459406</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459406/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Unfortunately, this is for web.config only.</evnet:previewtext><dc:creator>Drew Robbins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459406/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;P&gt;Keep in mind that there are quite a few capabilities in IIS7 to help with this as well. IIS7 has a shared configuration capability that allows you to&amp;nbsp;share configuration across a web farm, including local overrides for specific server settings. You can push your application settings up to the shared config file and take advantage of that feature.&lt;BR&gt;&lt;BR&gt;You can also customize your MSDeploy manifests to transform settings outside of what Visual Studio is doing.&lt;/P&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459362</link><pubDate>Mon, 02 Mar 2009 18:27:25 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459362</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459362/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Keep in mind that there are quite a few capabilities in IIS7 to help with this as well. IIS7 has a shared configuration capability that allows you to&amp;nbsp;share configuration across a web farm, including local overrides for specific server settings. You can push your application settings up to the&amp;#8230;</evnet:previewtext><dc:creator>Drew Robbins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459362/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>&lt;P&gt;They mentioned this at pdc i think.&amp;nbsp; It was something to do with the syntax being more similar to the web.config which i have to agree with since xslt can be quite messy.&lt;/P&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459354</link><pubDate>Mon, 02 Mar 2009 16:48:53 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459354</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459354/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>They mentioned this at pdc i think.&amp;nbsp; It was something to do with the syntax being more similar to the web.config which i have to agree with since xslt can be quite messy.</evnet:previewtext><dc:creator>Lee Timmins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459354/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Why did you invent a new syntax for config transformations instead of using XSLT?</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459275</link><pubDate>Mon, 02 Mar 2009 01:11:39 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459275</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459275/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Why did you invent a new syntax for config transformations instead of using XSLT?</evnet:previewtext><dc:creator>Joe Chung</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459275/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>I've seen way too many "roll your own" approaches to the environment-specific configs problem, so I like that there's finally an integrated solution!&lt;BR&gt;&lt;BR&gt;Now...I'm not&amp;nbsp;sold on using build&amp;nbsp;configuration to drive this process.&amp;nbsp; If I add a new "Staging" configuration, don't I now have the problem of keeping that in sync with the&amp;nbsp;"Release" configuration?</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459250</link><pubDate>Sun, 01 Mar 2009 18:10:02 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459250</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459250/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>I've seen way too many "roll your own" approaches to the environment-specific configs problem, so I like that there's finally an integrated solution!Now...I'm not&amp;nbsp;sold on using build&amp;nbsp;configuration to drive this process.&amp;nbsp; If I add a new "Staging" configuration, don't I now have the&amp;#8230;</evnet:previewtext><dc:creator>Eric Matz</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459250/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Will these changes also be available for the App.config file in non web apps?&lt;BR&gt;&lt;BR&gt;I like the new WFP based Visual Studio by the way, but hate the change from +/- to the dreaded Vista style&amp;nbsp;arrows :-(</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459172</link><pubDate>Sat, 28 Feb 2009 22:31:32 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459172</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459172/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Will these changes also be available for the App.config file in non web apps?I like the new WFP based Visual Studio by the way, but hate the change from +/- to the dreaded Vista style&amp;nbsp;arrows :-(</evnet:previewtext><dc:creator>Daniel Smith</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459172/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>forget web deployment, whats up with that snazzy IDE ?!?&amp;nbsp; When can we get our hands on the yumminess</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459143</link><pubDate>Sat, 28 Feb 2009 12:55:52 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459143</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459143/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>forget web deployment, whats up with that snazzy IDE ?!?&amp;nbsp; When can we get our hands on the yumminess</evnet:previewtext><dc:creator>Edward Moemeka</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459143/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>How does the web.config transformation work in situations with multiple environments and with multiple servers in each environment, and possibly multiple environments of the same level of deployment (e.g. two testing vs. one production environment).&amp;nbsp; &lt;br&gt;&lt;br&gt;Specifically, is it possible to have a 'hierarchical' transformation, whereas there may be both a testing and production environment with one web.config that would apply to all of your sites.&amp;nbsp; Then, in the production environment there might be multiple servers that each have a transformation file for the unique settings required for those servers in production.&amp;nbsp; However in the testing environment there would not only be multiple unique servers in the testing environment, but multiple testing environments (say T1 and T2).&amp;nbsp; So each server's web.config would be acted on three times, the global web config would be modified by the testing environment transformation, again by the track level transformation, and finally one for the specific server.&amp;nbsp; &lt;br&gt;&lt;br&gt;Such a creature would be like finding a goose that lays golden eggs.&amp;nbsp; Except, in this case, it would be golden web.configs.&lt;br&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459096</link><pubDate>Fri, 27 Feb 2009 22:22:17 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=459096</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/459096/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>How does the web.config transformation work in situations with multiple environments and with multiple servers in each environment, and possibly multiple environments of the same level of deployment (e.g. two testing vs. one production environment).&amp;nbsp; Specifically, is it possible to have a&amp;#8230;</evnet:previewtext><dc:creator>C S S</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/459096/Trackback.aspx</trackback:ping></item><item><title>Re: Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Hi Vaso,&lt;BR&gt;&lt;BR&gt;You can accomplish this with custom MSDeploy manifests, but not with the current Visual Studio integration. In fact there is a&amp;nbsp;ton of&amp;nbsp;automation&amp;nbsp;that you can do with MSDeploy - its a great tool and I'm really happy to see&amp;nbsp;it integrating into VS. &lt;BR&gt;&lt;BR&gt;Drew</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458977</link><pubDate>Thu, 26 Feb 2009 22:09:55 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458977</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/458977/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Hi Vaso,You can accomplish this with custom MSDeploy manifests, but not with the current Visual Studio integration. In fact there is a&amp;nbsp;ton of&amp;nbsp;automation&amp;nbsp;that you can do with MSDeploy - its a great tool and I'm really happy to see&amp;nbsp;it integrating into VS. Drew</evnet:previewtext><dc:creator>Drew Robbins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/458977/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>Thank you :-)&lt;BR&gt;&lt;BR&gt;Looks nice. &lt;BR&gt;&lt;BR&gt;Can we set in the config transformation&amp;nbsp;or&amp;nbsp;in another place an option&amp;nbsp;e.g.&amp;nbsp; to not deploy some folder or even specify files which not to deploy. I have got quite often some work/test directories which I am happy to have on my test web server but when deploying I don't want to deploy them..don't you guys have got similar experiences sometimes?&lt;BR&gt;&lt;BR&gt;Thanks and well done.&lt;BR&gt;&lt;BR&gt;Vaso.</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458899</link><pubDate>Thu, 26 Feb 2009 13:11:11 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458899</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/458899/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thank you :-)Looks nice. Can we set in the config transformation&amp;nbsp;or&amp;nbsp;in another place an option&amp;nbsp;e.g.&amp;nbsp; to not deploy some folder or even specify files which not to deploy. I have got quite often some work/test directories which I am happy to have on my test web server but when&amp;#8230;</evnet:previewtext><dc:creator>Vaclav Elias</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/458899/Trackback.aspx</trackback:ping></item><item><title>Re: 10-4 Episode 10: Making Web Deployment Easier</title><description>If you would like to dive in further detail you can also check out article series that we have started at below location:&lt;BR&gt;&lt;BR&gt;&lt;A href="http://vishaljoshi.blogspot.com/2009/02/web-packaging-creating-web-packages.html"&gt;http://vishaljoshi.blogspot.com/2009/02/web-packaging-creating-web-packages.html&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;Also do check out how to deploy your databases along with your web at deployment videos at below link:&lt;BR&gt;&lt;BR&gt;&lt;A href="http://vishaljoshi.blogspot.com/2008/12/vs-2010-for-web-developer-previews.html"&gt;http://vishaljoshi.blogspot.com/2008/12/vs-2010-for-web-developer-previews.html&lt;/A&gt;&lt;BR&gt;&lt;BR&gt;-Vishal&lt;BR&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458876</link><pubDate>Thu, 26 Feb 2009 07:26:17 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/10-4/10-4-Episode-10-Making-Web-Deployment-Easier/?CommentID=458876</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/458876/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>If you would like to dive in further detail you can also check out article series that we have started at below location:http://vishaljoshi.blogspot.com/2009/02/web-packaging-creating-web-packages.htmlAlso do check out how to deploy your databases along with your web at deployment videos at below&amp;#8230;</evnet:previewtext><dc:creator>Vishal</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/458876/Trackback.aspx</trackback:ping></item></channel></rss>