为什么我的命令行应用程序在 Visual Studio 之外运行时在远程程序集上出错?

发布于 2024-09-11 16:53:36 字数 209 浏览 3 评论 0原文

我有一个非常简单的命令行 .net 应用程序。我引用了 .dll 程序集,当我在 Visual Studio 中运行该程序时,一切都运行良好。但是,当我尝试双击 .exe 文件或通过 DOS 或其他方式手动运行它时,它会出错,说它没有访问权限或找不到我的程序集引用。

我现在对这种情况的理解是什么?是否与权限相关,或者我可能必须以其他方式链接程序集引用?我在网上找不到任何与此相关的内容。

I have a very simple command line .net application. I have reference to a .dll assembly and everything works just great when I run the program inside Visual Studio. However when I try to double click the .exe file or run it manually via DOS or something it error out saying it doesn't have access or can't find my assembly reference.

What am I now understanding about this situation? Is it permission related or maybe I have to link the assembly reference in another way? I can't find anything on web related to this one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北斗星光 2024-09-18 16:53:36

如果 dll 不存在,请尝试将 dll 复制到与 exe 相同的文件夹中。
如果 dll 是作为同一项目的一部分在 Visual Studio 中构建的,则请确保两个程序集都已编译(构建全部)。

当 VS 直接运行应用程序时,它会创建应用程序的不同版本,而不是您要发布的版本。您会注意到 yourapp.vshost.exe 那是 Visual Studio 的,而不是您应该运行的。

Try copying the dll to the same folder as the exe if it is not already there.
If the dll is being built in visual studio as part of the same project then make sure that both assemblies are being compiled (build all).

When VS runs an application directly it creates a different version of the application and not the one you would release. You'll notice yourapp.vshost.exe thats visual studio's one and not the one you should run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文