我们的c#项目中有一些pfx文件,需要在构建过程之前导入
sn -i key.pfx VS_KEY_XXX
构建作品。
问题:一段时间后,我在构建项目时再次遇到相同的错误:
错误:
Cannot import the following key file: key.pfx.
The key file may be password protected.
To correct this, try to import the certificate again or manually install the certificate to the Strong Name CSP with the following key container name: VS_KEY_XXX activity_plugin
所以我需要再次执行此操作,我必须使用sn -d VS_KEY_XXX
将其删除并重新安装。
我该怎么办,Visual Studio不会忘记签名?
我认为这是我的PC的问题,但是现在我有了一个新的PC,第一天就遇到了这个问题。
问候 马丁