English 中文(简体)
csc.exe 引用外部.dll 文件
原标题:csc.exe reference external .dll file

我试图用 Growl C# API 来做一个简单的 c/code> 程序。

我试图用两种不同的方式来编集我的节目:

  1. 我把我的.dll 文件保存在与我的 .cs 文件相同的目录中。

    csc /r:Growl.Connector.dll,Growl.CoreLibrary.dll /out:test.exe *.cs
    

    它汇编了罚款,并进行了罚款。

  2. 现在我在我的当前工作目录中创建了一个名为growl 的目录,并将所有 .dll 参考文献保存在那里。

现在当我试图用以下命令编译它时

csc /r:"D:ModifiedGrowl_NET_Connector_SDKlibrariesgrowlGrowl.Connector.dll","D:
ModifiedGrowl_NET_Connector_SDKlibrariesgrowlGrowl.CoreLibrary.dll" /out:test.exe *.cs

它汇编的很好,但当我试图运行它时,出现了以下提到的例外情况。

Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly  Growl.Connector, Version=2.0.0.0, Culture=n
eutral, PublicKeyToken=980c2339411be384  or one of its dependencies. The system cannot find the file specified.
 at GrowlNotification.Program.Main(String[] args)

因此,我的问题是,当文件在外部文件夹中时,在 < code>.dll 文件中引用 < dll 文件的正确方式是什么?

这里是""http://pastie.org/3956013" rel="不跟随 noreferrer"> 指令结构

最佳回答

因此,我的问题是,当文件在外部文件夹中时,在 csc 中引用.dll 文件的正确方式是什么。

您已经在 building time 时查找它们。 您只需要在 < em> 执行 时提供它们, 但当您想要运行它们时, 将它们复制到与执行文件相同的目录中 。

也可以使用全球大会缓存(Global Assembly Cache)进行调查,

问题回答

您可以在编译时使用 /lib 和 / reference 命令行开关添加这些开关。

http://msdn.microsoft.com/en-us/library/s5bac5fx.aspx" rel=“nofollow'>http://msdn.microsoft.com/en-us/library/s5bac5fx.aspx

" empenger > but (引自本条款)

An alternative to using /lib is to copy into the working directory any required assemblies; this will allow you to simply pass the assembly name to /reference. You can then delete the assemblies from the working directory. Since the path to the dependent assembly is not specified in the assembly manifest, the application can be started on the target computer and will find and use the assembly in the global assembly cache.

Because the compiler can reference the assembly does not imply the common language runtime will be able to find and load the assembly at runtime. See How the Runtime Locates Assemblies for details on how the runtime searches for referenced assemblies.

Jon Skeet的回答比较好。 (我只是补充一下这个来提供更多信息, 而不是回答。 Jon的回答是最好的海事组织)

您可以在您的库文件夹中的集会上创建 < a href=> https://msdn.microsoft.com/ en- us/library/ windows/desktop/aa365680(v=vs.85).aspx" rel=“ nofollow noreferrer”>symlinks , 以便您只需要在一个位置上更新它们。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...