I have a c#application that when I publish it within Visual Studio2008 it creates a deployment web page (Publish Folder --> Options Button --> Deployment section --> Deployment web Page --install.htm-- and have clicked on "Automatically generate deployment web page after every publish"), but when I publish the app using MSBuild (with the intention of automating the deployment of such an app) it does not generate a deployment web page.
When using MSBuild, other options/properties are taken as saved on the project properties, for example "use .deploy file extension" both on and off, incrementing publish version, etc.
Is there any property (or anything else) I can set to make MSBuild create the deployment web page?
(I have read the info on this link:
http://msdn.microsoft.com/en-us/library/ms165431.aspxas well as others but have not found an answer).
Thanks in advance to all that respond.