I would like to use app.config transformation as it is done for web.config on AppHarbor background workers. I tried the solution proposed in a previous question but it doesn't seem to work. Is this possible?
Thanks
AppHarbor actually already applies transforms before backgroundworkers are deployed, but the problem is that the file names no longer match up. So if we're transforming App.config, we look for a transformation called App.Release.config. After the build however, the file name will generally be ExecutableName.exe.config and there's no matching transform for that.
We're thinking of ways to work around this problem. In the mean time, you can rename your transformation to match the runtime configuration file name.
You can use SlowCheetah (a VS extension) to transform app.config in the same way that web.config. Let me know if that doesn't work for you.