【发布时间】:2011-04-13 14:04:23
【问题描述】:
我在尝试在单声道上使用 F# 签名 dll 时遇到错误:
$ mono /usr/local/share/FSharp-2.0.0.0/bin/fsc.exe\
--target:library \
--keyfile:../../external/MyKeyFile.snk\
AssemblyInfo.fs\
../../fs/FooBar.fs\
-o:FooBar.dll
没有生成 dll,我得到了这个错误:
Microsoft (R) F# 2.0 Compiler build 2.0.0.0 Copyright (c) Microsoft Corporation. All Rights Reserved.`
error FS2014: A problem occurred writing the binary '': A call to StrongNameGetPublicKey failed (mscoree.dll)`
密钥文件是在 Windows 中生成的,这有什么不同吗?
更新:
使用 Mono 2.6.4
$ mono --version
Mono JIT compiler version 2.6.4 (tarball Mon Jun 21 19:26:21 UTC 2010)
Copyright (C) 2002-2010 Novell, Inc and Contributors. www.mono-project.com
TLS: __thread
GC: Included Boehm (with typed GC and Parallel Mark)
SIGSEGV: altstack
Notifications: epoll
Architecture: amd64
Disabled: none
【问题讨论】:
-
您使用的是哪个版本的 Mono? (你可以通过 mono --version 找到)
-
@Edgar,我已将信息添加到问题中。
标签: f# mono assembly-signing