gpt4 book ai didi

c# - 无法在 Visual Studio 2012、C# 中加载文件或程序集

转载 作者:行者123 更新时间:2023-11-30 15:32:42 24 4
gpt4 key购买 nike

我正在 Windows 7 上的 Visual Studio 2012 上编写 C# 代码。我的解决方案包含多个项目。

我最近在我的解决方案中添加了一个新项目,并在解决方案中的其他 2 个项目(其中一个是启动项目)的引用中添加了这个新项目的 dll。新项目本身引用了我的解决方案中未包含的其他几个项目。

在解决方案中构建项目工作正常,但当我尝试运行程序时(在调试或发布中)我收到错误。这是错误:

System.IO.FileNotFoundException was caught
HResult=-2147024894
Message=Could not load file or assembly 'ABCD, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Source=NP
FileName=ABCD, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
FusionLog==== Pre-bind state information ===
LOG: User = MyCompany\MyName
LOG: DisplayName = ABCD, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
(Fully-specified)
LOG: Appbase = file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/
LOG: Initial PrivatePath = NULL
Calling assembly : NP, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Users\MyName\Documents\Visual Studio 2012\Projects\MyProgram\Analysis\bin\Debug\Analysis.vshost.exe.Config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/ABCD.DLL.
LOG: Attempting download of new URL file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/ABCD/ABCD.DLL.
LOG: Attempting download of new URL file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/ABCD.EXE.
LOG: Attempting download of new URL file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/ABCD/ABCD.EXE.

StackTrace:
at NewProject.DATA.SetType(NP np, String code, OrderType orderT, MODEL MODELv)
at NewProject.DATA.SetData(NP np, String no, String type, String law, String time, OrderType orderT, MODEL MODELv)
InnerException:

分析是我的启动项目。NewProject 是我最近添加到我的解决方案中的项目。NewProject 中引用了 ABCD.dll,但项目 ABCD 不是解决方案本身的一部分。

在这个报错中说AppBase是file:///C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/

但是,当我查看 NewProject 中的 ABCD 引用时,它说:

Assembly ABCD
C:\Users\MyName\Documents\Visual Studio 2012\Projects\np\bin\ABCD.dll

的确,ABCD.dll在没有在AppBase地址中写入错误。但我从来没有说过它在那里,我不明白这是从哪里来的。

我试图将 ABCD.dll 放入 AppBase 地址中,但出现错误。但是每次我重建 NewProject 和(然后)我的启动项目 Analysis 时,ABCD.dll 从 C:/Users/MyName/Documents/Visual Studio 2012/Projects/MyProgram/Analysis/bin/Debug/中消失

我是 Visual Studio 的新手。我在添加新项目时可能做错了什么,但我不明白它是什么。如果你们中的任何一个人对解决这个问题的方法有想法,请不要犹豫,说出来!

最佳答案

如果您需要项目之间的引用,那么添加“项目引用”而不是引用 DLL 文件。如果你真的需要引用一个 DLL 文件,那么:

1) 在您的项目中创建一个“Libraries”(或其他)文件夹。

2) 将引用的 DLL 复制到此文件夹中。

3) 在VS中,使用“Add existing item”将DLL文件添加到项目中。在文件选择对话框中,您需要将文件过滤器更改为 *.* 才能显示 DLL。

4) 在此 DLL 节点的属性下,在构建选项中选择“如果更新则复制”。

5) 在“Libraries”目录下添加对DLL文件的引用。

项目之间的引用当然更好,因为当您重建它们时,您的引用会自动更新。否则,每次要更新引用时都需要用新的 DLL 文件替换。

关于c# - 无法在 Visual Studio 2012、C# 中加载文件或程序集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18467049/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com