<t>In cases where it doesn't matter if the developer can see production credentials, you can use the built-in Visual Studio 10 config transformations. If this is what you're looking for, follow these steps:<br/>
<br/>
1.Navigate to your Azure project folder in file explorer<br/>
<br/>
Make a copy of ServiceConfiguration.cscfg<br/>
<br/>
Rename copy to ServiceConfiguration.Base.cscfg<br/>
<br/>
For each build configuration (e.g. Dev, Staging, Production), create a ServiceConfiguration..cscfg file. In these files, you can use the normal config transformation syntax<br/>
<br/>
Open your .ccproj file in a text editor<br/>
<br/>
Find the following node, <br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
```<br/>
<br/>
and replace it with this (you will have to edit this block to match your build configs):<br/>
<br/>
```<br/>
<br/>
<br/>
<br/>
<br/>
ServiceConfiguration.cscfg<br/>
<br/>
<br/>
ServiceConfiguration.cscfg<br/>
<br/>
<br/>
ServiceConfiguration.cscfg<br/>
<br/>
<br/>
ServiceConfiguration.cscfg<br/>
<br/>
<br/>
<br/>
```<br/>
<br/>
7.Add the following at the end of the .ccproj file, just above ``:<br/>
<br/>
```<br/>
<br/>
<br/>
<TransformXml Source="ServiceConfiguration.Base.cscfg" Transform="ServiceConfiguration.$(Configuration).cscfg" Destination="ServiceConfigura<br/>
<br/>
*(Réponse tronquée)*</t>