When I sign an application, I typically run a command line instruction like this:
msbuild /p:project=whatever;platform=all;configuration=sign;KeyFile=key.pfx;Password=pass;RunCodeAnalysis=false;StyleCopEnabled=false
Instead of specifying the password on the command line, is there an MSBuild property that lets me specify a file that contains the password? If not, is there any recommended procedure for signing, where the password is specified indirectly?