If you are using Visual Studio 2010 then you may already be familiar with the Web.config transformations that are now available. What you might not know is that you can use that same technology to transform config files outside of the build process. You will need Visual Studio 2010 installed on the machine where you perform these transformations. It is very easy to perform these transformation as well. Let’s say that we start with the app.config file shown below.


    
        
        
    
    
    
        
        
    
    

Then we create another file, transform.xml, which contains our transformations. That file is shown below.


    
        
        
    

    
        
        
    

Then we can easily execute the transformations by using MSBuild. So I created a file named trans.proj and it is shown below.


    

    
        
    

This MSBuild file uses the TransformXml task which is shipped with Visual Studio 2010. We specify the source file, transform file and the destination. Pretty straight forward.

In order to execute this I open a Visual Studio 2010 command prompt, browse to the directory containing both files, and enter the following command

msbuild trans.proj /t:Demo

Once you do this then you will find the file app.prod.config with the following contents.


    
        
        
    
    
    
        
        
    
    

Sayed Ibrahim Hashimi


Comment Section


Comments are closed.