1

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?

Community
  • 1
  • 1
LukeSolar
  • 3,795
  • 4
  • 32
  • 39

1 Answers1

2

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.

Andrew Barber
  • 39,603
  • 20
  • 94
  • 123
  • Thx. Any suggestions for the related questions above? How to simulate/test and best practices for development? – LukeSolar May 13 '11 at 16:23