Currently I can easily setup Web.config transform based on build configuration, e.g. use connectionString=server;..
for Debug
and connectionString=./SQLExpress;..
for Release
.
But is it possible to do some Web.config transformation basing on web publish profile? I.e. use connectionString=server1;..
for profile Server1
and connectionString=server2;..
for Server2
?