Can Web.config conversions be used with App.config files?

Possible duplicate:
Converting App.Config to "No Web Projects" in Visual Studio 2010?

Basically, the question is above. The new configuration conversions that are provided for the web.config file for different environments are really nice.

However, I need the same functionality for app.configs, which differs in test environments.

Does anyone know how to do this?

Thanks in advance.

+7
web-config app-config transformation
source share
3 answers

Vishal Joshi has a post about this: Applying XDT Magic to App.Config

There is also a related, though possibly asked, question about StackOverflow: Converting App.Config for Visual Studio 2010?

+6
source share

I recently made a post about this, you can find it at:

Visual Studio App.config XML Transformation

It is based on a post by Vishal Joshi, but eliminates the need to change the assembly action of the app.config files to Content, and also adds support for ClickOnce deployment.

+3
source share

Officially, no.

Disable recording, yes. Here's the best blog post I've seen when turning on transforms for app.config files:

Vishal Joshi Tangent: Applying XDT Magic to App.config

0
source share

All Articles