Reputation: 1291
I am trying to deploy a ASP.NET website to Microsoft Azure from Visual Studio, While Deploying to Azure It does not list release mode under setting.
How I can get listed release mode under setting.
Upvotes: 2
Views: 151
Reputation: 1579
If you are publishing a website(File->New Web Site option in VS) rather than a web application(File->New Project->Web Application), then this is by design. There is no release option for publishing website in Visual Studio. For publishing a website, you don't really need a Release mode as when it is built all of the files within it will be copied to the appropriate location. Check this thread for details.
If you want to publish the web site in release mode, please create your web site via File->New Project->Web Application. Hope this helps.
Upvotes: 1