Why my web app doesn't use Web.Debug.config in debug running?

Viewed 15873

Possible Duplicate:
Use Visual Studio web.config transform for debugging

I have an asp.net application with three web.config transformations.

enter image description here

I was thinking when I launch debug running (F5 with Debug mode selected) the transformations written in the Web.Debug.config will apply.. But it doesn't work.. the Web.config used is the "Base" one.

You will tell me : "The transformation aren't right".. But they are because when I make a deploy (right click/publish) with debug release config : enter image description here

The rendered web.config have modifications! So it works, but the debug running is using the base web.config.. Is there a place I can configure that?

1 Answers
Related