How to publish using msbuild [duplicate]
Possible Duplicate:
How do I publish a Asp.net web application using MSBuild?
I have a web application and I want to publish it using msbuild.
I am not interested in the copying files part I just want a directory of files that do not have cs files and and contain the same files as the publish directory would.
I tried using AspNetCompiler, but I开发者_如何转开发 am getting extra files in the bin directory:
App_global.asax.compiled
App_global.asax.dll
looked this up just a few days ago :)
http://codingcockerel.co.uk/2008/05/18/how-to-publish-a-web-site-with-msbuild/
I had to use aspnet_merge to get rid of the app_global.asax.dll
精彩评论