Reputation: 459
I'm using Azure Continuous Deploy for an ASP.NET MVC project from a Bitbucket repository. But it only publishes the site using Release settings. How can I use Continuous Deploy with Debug settings or custom settings instead?
PS: I think that it doesn't matter, but I'm using Visual Studio 2015 with Git tools for syncing with the Bitbucket repository
Upvotes: 2
Views: 149
Reputation: 13558
You can customize your deployment via a .deployment file in your repo (details here). E.g, you can change to DEBUG like so:
[config]
SCM_BUILD_ARGS=-p:Configuration=Debug
Upvotes: 6