I've loved using the new VS 2012 Publishing Profiles, but when using them on a build server i'm unsure how to store the password.
When I tick the box the "save the password" it creates a .pubxml.user file and encrypts the password in an XML node.
When i run the deployment on a build server the password file always seems to be ignored.
I can get away with storing the password in a
<PropertyGroup>
<Password>NotMyRealPassword>
</PropertyGroup
But given they are already encrypting it i'd love to use the VS Encryption if I can.
How do i unecrypt and fill the <Password>
property without building a custom task to do so?
Also - if I did have to build a custom MSBUILD task, what type of encryption is in use in this SUO file?