<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>
			Comments on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;
		</title>
		<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild</link>
		<atom:link href="http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild/CommentRss" rel="self" type="application/rss+xml" />
		<description>
			A feed of all comments that are posted on the blog titled &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;.
		</description>
		<lastBuildDate>Sat, 18 Jul 2026 00:00:40 GMT</lastBuildDate>
		
		
			<item>
				<title>Petkov commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment20</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 20</guid>
				<dc:creator>Petkov</dc:creator>
				<pubDate>Wed, 24 Nov 2010 19:30:56 GMT</pubDate>
				<description>
					Thanks! This is exact what I was looking for
				</description>
			</item>
		
		
			<item>
				<title>Davinci commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment21</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 21</guid>
				<dc:creator>Davinci</dc:creator>
				<pubDate>Wed, 01 Dec 2010 20:14:01 GMT</pubDate>
				<description>
					This is what I am looking for however there has to be some target missing or property I need to set because I get the error &lt;br/&gt;&lt;br/&gt;&amp;quot;The Target PipelinePreDeployCopyAllFilesToOneFolder does not exist in project.&amp;quot;&lt;br/&gt;&lt;br/&gt;You may have manually set the property or target in your MSBuild project file and not know it.&lt;br/&gt;&lt;br/&gt;Right now I can't figure out what property(s) and or target(s) are needed to import the use of Microsoft.Web.Publishing.targets file.&lt;br/&gt;&lt;br/&gt;I guess I'll go digging into the &lt;br/&gt;Microsoft.WebApplication.targets to find it.  EEK!
				</description>
			</item>
		
		
			<item>
				<title>Davinci commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment22</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 22</guid>
				<dc:creator>Davinci</dc:creator>
				<pubDate>Wed, 01 Dec 2010 20:18:52 GMT</pubDate>
				<description>
					So I decided to try the Package solution and create a zip file.   NO DICE as I get the error.&lt;br/&gt;&lt;br/&gt;Package does not exist in the project.
				</description>
			</item>
		
		
			<item>
				<title>Davinci commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment23</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 23</guid>
				<dc:creator>Davinci</dc:creator>
				<pubDate>Wed, 01 Dec 2010 20:38:37 GMT</pubDate>
				<description>
					Figured out my problem My project targets .NET 2.0 and this only works if you use .NET 4.0&lt;br/&gt;&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>Andrew Newcomb commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment24</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 24</guid>
				<dc:creator>Andrew Newcomb</dc:creator>
				<pubDate>Mon, 13 Dec 2010 13:55:46 GMT</pubDate>
				<description>
					Thanks for a useful post, just what I needed.&lt;br/&gt;&lt;br/&gt;I had to make one further change to stop the tokenisation of connection strings in the web.config file. &lt;br/&gt;Search for AutoParameterizationWebConfigConnectionStrings in the post at... &lt;br/&gt;&lt;a href=&quot;http://sedodream.com/2010/11/11/ASPNETWebApplicationPublishPackageTokenizingParameters.aspx&quot;&gt;http://sedodream.com/2010/11/11/ASPNETWebApplicationPublishPackageTokenizingParameters.aspx&lt;/a&gt; &lt;br/&gt;&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>woofy commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment52</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 52</guid>
				<dc:creator>woofy</dc:creator>
				<pubDate>Mon, 22 Aug 2011 15:02:57 GMT</pubDate>
				<description>
					I created a test web app with VS2010 and this method worked perfectly.  However, I tried it on our actual application and it fails with a bunch of errors.&lt;br/&gt;&lt;br/&gt;To figure out what was wrong, I set up a new test scenario with my initial test web app by creating a new class library project and then referencing this project (not its DLL) by my web app (I also made sure to put some code in my web app that actually referenced code in the class library).  When I tried your command line method, it failed with the same errors that I got when I tried this on our production app.  I then removed the reference to the class library project and instead referenced its DLL directly.  The build worked just fine after that.&lt;br/&gt;&lt;br/&gt;How is one supposed to deal with this situation?
				</description>
			</item>
		
		
			<item>
				<title>Unknown (google) commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment59</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 59</guid>
				<dc:creator>Unknown (google)</dc:creator>
				<pubDate>Tue, 08 Nov 2011 20:45:58 GMT</pubDate>
				<description>
					Hi,&lt;br/&gt;&lt;br/&gt;I encountered the following error when used the above publish to filesystem method&lt;br/&gt;&lt;br/&gt;MSB3021  unable to copy because a file or directory with the same name already exists.&lt;br/&gt;&lt;br/&gt;Any ideas?&lt;br/&gt;&lt;br/&gt;
				</description>
			</item>
		
		
			<item>
				<title>superbDeveloper commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment61</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 61</guid>
				<dc:creator>superbDeveloper</dc:creator>
				<pubDate>Tue, 20 Dec 2011 10:55:59 GMT</pubDate>
				<description>
					thanks works well
				</description>
			</item>
		
		
			<item>
				<title>sproket99 commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment67</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 67</guid>
				<dc:creator>sproket99</dc:creator>
				<pubDate>Mon, 09 Apr 2012 08:59:49 GMT</pubDate>
				<description>
					Great post. Thank you very much... 
				</description>
			</item>
		
		
			<item>
				<title>Magnus commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment69</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 69</guid>
				<dc:creator>Magnus</dc:creator>
				<pubDate>Tue, 17 Apr 2012 16:53:22 GMT</pubDate>
				<description>
					Been looking for this for a long time for our build server without finding any good solution. Thank you very much!
				</description>
			</item>
		
		
			<item>
				<title>Krishan Gahlot commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment76</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 76</guid>
				<dc:creator>Krishan Gahlot</dc:creator>
				<pubDate>Wed, 15 Aug 2012 08:57:59 GMT</pubDate>
				<description>
					A complete article with screen shots to deploy asp.et web applications...&lt;br/&gt;csharpdemos.blogspot.in/2012/08&lt;a href=&quot;/how-to-deploy-aspnet-website-using-iis-7.ht&quot;&gt;/how-to-deploy-aspnet-website-using-iis-7.ht&lt;/a&gt;ml
				</description>
			</item>
		
		
			<item>
				<title>Per commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment81</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 81</guid>
				<dc:creator>Per</dc:creator>
				<pubDate>Mon, 22 Oct 2012 09:25:30 GMT</pubDate>
				<description>
					Thanks for a great article. These features are surely badly documented and I have myself been looking around a lot for this kind of solution.
				</description>
			</item>
		
		
			<item>
				<title>Stephan commented on &quot;Locally publishing a VS2010 ASP.NET web application using MSBuild&quot;</title>
				<link>http://digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application-using-msbuild#Comment89</link>
				<guid isPermaLink="false">DigitallyCreated Comment ID: 89</guid>
				<dc:creator>Stephan</dc:creator>
				<pubDate>Mon, 06 May 2013 15:07:00 GMT</pubDate>
				<description>
					We are implementing a pluggable architecture at a client.&lt;br/&gt;We have one ASP.NET MVC web core with N plugins created by separate teams (which go into the Areas folder of the core). &lt;br/&gt;Each plugin is a separate ASP.NET MVC project and we should be able to deploy it.&lt;br/&gt;We want the ability for a plugin team to deploy the plugin by creating a package. &lt;br/&gt;The core should not be redeployed each time. &lt;br/&gt;How would this have to be achieved (custom targets file)?&lt;br/&gt;&lt;br/&gt;All content (views, scripts, css) must go into the Areas sub folder of the core. &lt;br/&gt;The dll files must go into the bin folder of the core.&lt;br/&gt;&lt;br/&gt;The goal is that an administrative person runs the package (eventually with some customizations).
				</description>
			</item>
		
		
		
	</channel>
</rss>
