8

我在 Visual Studio 中打开了一个项目(它恰好是 Enyim.Caching)。这个程序集想要延迟签名。事实上,它非常渴望被延迟签名,以至于我无法强制 Visual Studio 编译它而不延迟签名。

  1. 我在 Visual Studio 项目属性框中取消选中“仅延迟签名”和“签署程序集”,然后重新构建。组件仍标记为延迟标志(如 所示sn.exe -v)。

  2. 我已卸载项目并验证签名设置为 false。重新加载项目时,选中“Sign”和“Delay Sign”复选框。

  3. 我已验证 AssemblyInfo(或其他地方)中不存在会导致此问题的属性。

  4. 我在互联网上搜索了解决方案,但没有找到。

我怎样才能做到这一点?

4

2 回答 2

10

在这种情况下,问题是项目“公共属性”引用。

在项目的 .csproj 文件中是这个无害的小行:

<Import Project="..\build\CommonProperties.targets" />

不幸的是,文件CommonProperties.targets

解决方案是进入CommonProperties.targets文件并删除以下行:

<!-- delay sign the assembly if the PrivateKeyPath property is not specified -->
<PropertyGroup Condition=" '$(PrivateKeyPath)' == '' And '$(PrivateKeyName)' == ''">
    <AssemblyOriginatorKeyFile>..\public_key.snk</AssemblyOriginatorKeyFile>
    <DelaySign>true</DelaySign>
</PropertyGroup>

<!-- sign the assembly using the specified key file containing both the private and public keys -->
<PropertyGroup Condition=" '$(PrivateKeyPath)' != '' ">
    <AssemblyOriginatorKeyFile>$(PrivateKeyPath)</AssemblyOriginatorKeyFile>
    <DelaySign>false</DelaySign>
</PropertyGroup>

<!-- sign the assembly using the specified key container containing both the private and public keys -->
<PropertyGroup Condition=" '$(PrivateKeyName)' != '' ">
    <AssemblyOriginatorKeyFile></AssemblyOriginatorKeyFile>
    <DelaySign>false</DelaySign>
</PropertyGroup>

将这些行替换为以下内容:

  <PropertyGroup>
    <DelaySign>false</DelaySign>
    <SignAssembly>false</SignAssembly>
  </PropertyGroup>
于 2013-03-18T04:19:41.867 回答
0

遇到了同样的问题。即使我禁用了“仅延迟签名”和“签署程序集”,我仍然收到错误

error MSB3325: Cannot import the following key file: . The key file may be password protected".

.csproj 是正确的:

<PropertyGroup>
    <SignAssembly>false</SignAssembly>
    <DelaySign>false</DelaySign>
</PropertyGroup>

但是,下面还有一个更棘手的行:

<SignAssembly Condition="Exists('..\xxx.pfx')">true</SignAssembly>

只有在我删除了.csproj中的行,或者删除了磁盘上的文件之后,VS才能运行。

似乎是VS的一个错误。我正在使用的版本:

Microsoft Visual Studio 2010
Version 10.0.40219.1 SP1Rel
Microsoft .NET Framework
Version 4.5.50709 SP1Rel
于 2013-12-17T08:24:34.950 回答