It might be a repetitive subject and some might argue that it’s even best to have identical web.config files for all developer. But, the fact it sometimes it’s inevitable! you are not always building software from scratch. It might be an extension to a huge software that contains per-machine keys and configurations. Unfortunately there are many blog posts here and there that suggest using batch files and methods that are more like a hack. Here I’m going to explain how to use the out-of-the-box functionality in Visual Studio without any external tool or hack.
If you already know how those two web.debug.config
and web.release.config
files work you’ll get the idea. Basically they are a kind of Xslt transformation that are selected based on the current configuration (web.($configuration).config
) and we want the same thing but based on current username (web.($Username).config
). To learn how to use web.config transformations and its syntax visit “http://go.microsoft.com/fwlink/?LinkId=125889”
And here is the recipe:
- Right-click over the project name in Solution Explorer and select “Add \ New Item…”
- Select XML File under Data category and give it a name in the following pattern
web.{username}.config
(e.g.web.reza.config
). - Copy-paste the content of
web.debug.config
to this new file (i.e.web.{username}.config
) to use as a starting point and override the settings as you need. If you don’t feel comfortable with the transformation syntax, take a look at this page. It’s fairly easy.
Here is an example to override the <machineKey>
attributes.
<?xml version="1.0"?> <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <system.web> <machineKey xdt:Transform="SetAttributes" validationKey="EFEF01678000A361AADF4E01DB5AD356C91111E781660310" decryptionKey="6EF12ECA1A36ACAC4D08212E9FA8F34B1919A3DD818B8E0F" validation="SHA1" /> </configuration>
- Save the file.
- Right-click over the project name in Solution Explorer and select Unload Project.
- Right-click again over the project name and this time select Edit {projectfilename}.
- At the end of the file, right before
</Project>,
paste the following piece of XML (don’t worry I will explain later).
<Target Name="AfterBuild" Condition="Exists('web.$(USERNAME).config')"> <Copy SourceFiles="web.config" DestinationFiles="obj\$(Configuration)\tempweb.config" /> <TransformXml Source="obj\$(Configuration)\tempweb.config" Transform="web.$(USERNAME).config" Destination="obj\$(Configuration)\tempweb2.config" /> <ReadLinesFromFile File="obj\$(Configuration)\tempweb2.config"> <Output TaskParameter="Lines" ItemName="TransformedWebConfig" /> </ReadLinesFromFile> <ReadLinesFromFile File="web.config"> <Output TaskParameter="Lines" ItemName="UnTransformedWebConfig" /> </ReadLinesFromFile> <Copy Condition=" @(UnTransformedWebConfig) != @(TransformedWebConfig) " SourceFiles="obj\$(Configuration)\tempweb2.config" DestinationFiles="web.config" OverwriteReadOnlyFiles="True" /> </Target>
- Save the project file.
- Right-click on the project file again and select Reload Project this time.
- Build and project and check the result.
And now the explanation. Basically what we did was to add an AfterBuild process (you can also use a BeforeBuild) and set a condition for it to only run when there is web.{username}.config
file in the project’s root. It means that if there is no such file for the current developer, it will be skipped. Within the process we have 5 actions that run in the order that is written:
<Copy>
makes a copy of web.config file to “obj\($configuration)” folder with the name “tempweb.config”. The value of$Configuration
depends on the build configuration currently selected in your Visual Studio (e.g. Release or Debug).<TransformXml>
runs the transformation to override developer specific values in the tempweb.config file and generates another file (tempweb2.config).- The two
<ReadLinesFromFile>
actions load the content of tempweb2.config and original web.config file into two different variables. - The last
<Copy>
replaces the originalweb.config
only if there is any difference between the generated file and the original (Condition="@(UnTransformedWebConfig) != @(TransformedWebConfig)"
).
Leave a Reply