将 C# .dll 引用从绝对引用更改为相对引用

发布于 2024-10-22 03:42:24 字数 108 浏览 1 评论 0原文

我已经编译了我的项目,并且我的项目添加的一些 .dll 具有绝对引用。当我尝试在另一台计算机上运行我的项目时,它会从原始项目路径中查找 .dll。

如何让项目使用相对路径查找 .dll?

I have compiled my project and some of my project's added .dlls have absolute references. When I try to run my project on another machine, it looks for the .dlls from the original project path.

How can I make the project look for the .dlls using a relative path?

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

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

发布评论

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

评论(2

深海夜未眠 2024-10-29 03:42:24

编辑 .csproj 文件并将 元素从绝对路径更改为相对路径。

Edit the .csproj file and change the <HintPath> elements from absolute paths to relative paths.

痴者 2024-10-29 03:42:24

您还可以编写处理程序来解析程序集。最简单的形式可能如下所示:

AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolveHandler;
..
static Assembly AssemblyResolveHandler(object sender, ResolveEventArgs args)
{
  string assemblyPath = "yourpath";
  return Assembly.LoadFrom(assemblyPath + args.Name);
}

另一种选择是在 App.config 中添加条目:

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="yourpath"/>
     </assemblyBinding>
  </runtime>

You may also write your handler for resolving assemblies. In the simplest form it may look like this:

AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolveHandler;
..
static Assembly AssemblyResolveHandler(object sender, ResolveEventArgs args)
{
  string assemblyPath = "yourpath";
  return Assembly.LoadFrom(assemblyPath + args.Name);
}

Another option is adding entry in App.config:

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="yourpath"/>
     </assemblyBinding>
  </runtime>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文