我正在尝试从“obj\x86\Debug”中获取 .exe 以共享我的 C# 控制台应用程序,我在其中找到了一个 myProgram.exe 文件。
当我从命令行调用它时,我收到以下错误:
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly
'ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73' or one of its dependencies.
The system cannot find the file specified.
at Project.MyClass..ctor(String arg1, String arg2)
at Project.MyClass.Main(String[] args) in C:\Project\MyClass\MyClass.cs:line 207
该程序使用了一个DLL,我把它放在了我在项目根目录下创建的“\lib\”文件夹中;这是 ICSharpCode.SharpZipLib taht 被引用。