I would like to publish a website using msbuild. Since I have a website and not a web application project, how can I go about this since I do not have the .csproj file and msbuild expects a project file as input or you can execute it in a folder with a project file. My solution file contains multiple websites that do not have .csproj files ?
Share
Use the Aspnet compiler task.
http://msdn.microsoft.com/en-us/library/ms164291.aspx
It works on asp.net websites. Just copy (or output directly) to where you need it deployed.