Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我签署应用程序时,我通常会运行如下命令行指令:
msbuild /p:project=whatever;platform=all;configuration=sign;KeyFile=key.pfx;Password=pass;RunCodeAnalysis=false;StyleCopEnabled=false
除了在命令行上指定密码之外,是否有一个 MSBuild 属性可以让我指定一个包含密码的文件?如果没有,是否有任何推荐的签名程序,其中密码是间接指定的?
如果可以使用 BAT/CMD 文件而不是直接调用 MSBuild:
您可以将文件的内容插入到调用 MSBuild 的行中set /p
set /p
set /p MyPassword = < path\to\file\Password.txt msbuild ...;Password=%MyPassword%;