Issue
We are using config transforms inside our solution. For example: Debug, Test, Staging, Release However, those configurations are only used on our
One simple solution would be to add a new property to your projects called "DeploymentConfiguration" and have it do the mapping between configs. Example:
Debug
Debug
Then in your MSBuild invocation, pass in
/p:DeploymentConfiguration=Test
In your deployment MVC you'd just assign DeploymentConfiguration through to Configuration directly.