Machine specific transformations

Is it possible to execute transformations that are specific to a machine?

Hi,

In the latest Octopus (1.5.1+) you can specify the prefixes of additional transform files to run on the package step definition screen. You could set it to:

 #{Octopus.Machine.Name}.config

Paul

This was exactly what I was looking for.

Thanks!

I used above method with following format in additional transform file, but it didn’t work for files like web.machinename.qa.config. any idea?

*.#{Octopus.Machine.Name}.qa.config

Removing “*.” worked. I use the following format and it works like a charm.


#{Octopus.Machine.Name}.#{Octopus.Environment.Name}.config

Thanks.