I think that all of you use configuration files. When we are working with a complex project, where many developers need to configure their environment in a way to have a custom configuration, there are cases when they install some application in different locations for example, or they have the SQL server with a different name.
What we can do with these cases? In a perfect world we would not have this problem, but for example a part of the team want to use the SQL Azure and another part of the team want to use their own SQL server instance.
When the configuration is in the web.config or in the app.config, Microsoft offer to us a very nice solution. We can have different configuration for each developer (on their local machine). Each time we will rebuild the solution, the configuration file will be regenerated.
This feature is supported from Visual Studio2008 2010, but is not well known by all developers. In the next part of the post we will see how we can configure our project to support this functionality.
After this step you can reopen the project with the XML editor and uncomment the “DependentUpon” nodes.
Now, we need to specify to the build to recreate the configuration file at each build using the base configuration file and the custom configuration files that can be found in the project. Next steps need to be done to be able to define this functionality:
This file is necessary in the build process to create the configuration file based on the base file and our custom configuration file that we will add.
Because each build configuration is custom for each machine, we can add many build configurations we want. For each build configuration we can add a custom configuration file. Let’s see how we can add a build configuration and to generate a configuration file for our custom build:
In this way we can have custom configuration on each developer machine without any kind of problemes.
What we can do with these cases? In a perfect world we would not have this problem, but for example a part of the team want to use the SQL Azure and another part of the team want to use their own SQL server instance.
When the configuration is in the web.config or in the app.config, Microsoft offer to us a very nice solution. We can have different configuration for each developer (on their local machine). Each time we will rebuild the solution, the configuration file will be regenerated.
This feature is supported from Visual Studio
- First step that need to be done is to remove the web.config file from TFS. This simple trick can be done if you follow the next steps:
- Select your project, right-click on it and unload it (“Unload Project”)
- Select your unloaded project, right-click on it and open with the XML editor (“Edit [ProjectName]”)
- Search all the node named “Content” where the “Include” attribute point to the configuration files
- Comment all the “DependentUpon” nodes that are under these nodes
- Save the file and reload the project (right-click on the project and click on “Reload Project”)
<Content Include="Web.Debug.config">
<!--<DependentUpon>Web.config</DependentUpon>-->
</Content>
<Content Include="Web.Release.config">
<!--<DependentUpon>Web.config</DependentUpon>-->
</Content>
- Duplicate the configuration file and rename the copy to “Web.base.config”
- Remove the web.config file from TFS
After this step you can reopen the project with the XML editor and uncomment the “DependentUpon” nodes.
Now, we need to specify to the build to recreate the configuration file at each build using the base configuration file and the custom configuration files that can be found in the project. Next steps need to be done to be able to define this functionality:
- Add a file to your project named[YourProjectName].wpp.targets
- Add the following content to it:
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="TransformXml"
AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
<Target Name="CopyWebConfig" BeforeTargets="Build;Rebuild">
<Copy SourceFiles="Web.base.config"
DestinationFiles="Web.config"
OverwriteReadOnlyFiles="true"
SkipUnchangedFiles="false" />
</Target>
<Target Name="CustomTarget" BeforeTargets="BeforeBuild">
<Message Text="Transforming: Web.$(Configuration).config" Importance="high" />
<TransformXml Source="Web.base.config"
Transform="Web.$(Configuration).config"
Destination="Web.config" />
</Target>
</Project>
Visual Studio 2012:<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="TransformXml"
AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
<Target Name="CopyWebConfig" BeforeTargets="Build;Rebuild">
<Copy SourceFiles="Web.base.config"
DestinationFiles="Web.config"
OverwriteReadOnlyFiles="true"
SkipUnchangedFiles="false" />
</Target>
<Target Name="CustomTarget" BeforeTargets="BeforeBuild">
<Message Text="Transforming: Web.$(Configuration).config" Importance="high" />
<TransformXml Source="Web.base.config"
Transform="Web.$(Configuration).config"
Destination="Web.config" />
</Target>
</Project>
This file is necessary in the build process to create the configuration file based on the base file and our custom configuration file that we will add.
Because each build configuration is custom for each machine, we can add many build configurations we want. For each build configuration we can add a custom configuration file. Let’s see how we can add a build configuration and to generate a configuration file for our custom build:
- Go to “Build” menu from Visual Studio and select “Configuration Manager”
- On the “Active solution configuration” combo-box select “New” and create a new build configuration with any name you want. I recommend a name like [username.machinename]
- Close the “Configuration Manager” windows
- Right-click on the configuration file from your project and click on “Add Config Transform”
- Success, the system created our custom configuration file. Don’t forget to NOT check-in this configuration file to the TFS. Also the “Add Config Transform” will be active only when there are some new changes in the “Configuration Manager”.
In this way we can have custom configuration on each developer machine without any kind of problemes.
Nice :)
ReplyDeleteUsing this solution, is it possible for a developer to have separate solution configurations for Debug/Release/etc.. ?
You can have any kind of configuration. Your current build will not be named Debug for examle. Will be named MyCustomBuild. This happens because you need to create a new "Configuration Manager" for your build.
DeleteThis comment has been removed by a blog administrator.
ReplyDelete