Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How can I use Web.debug.config in the built-in visual studio debugger server?

I added a Debug/Release web.config transformation file to a web application project.

While its working when I build a deployment package it is not applied when I simply "start debugging" (green play button). Is this the expected behaviour or should the transformations be applied? What are best practices to switch between different configurations in development?

How can I raplidly test if a web.config transformation works and whats the resulting web.config file?

share|improve this question
For a way to get this behavior, see here: stackoverflow.com/a/3994081/1092630 – radium Aug 17 '12 at 20:52

marked as duplicate by casperOne Aug 30 '12 at 11:26

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

No; only when you build the deployment package - and they are not applied to the files in your project at all - so they are not present from the project, debugging or otherwise - without some custom step to get the transformed web.config moved.

share|improve this answer
Thx. Any suggestions for the related questions above? How to simulate/test and best practices for development? – LukeSolar May 13 '11 at 16:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.