在 Visual Studio 2010 Web 项目中包含外部资源的链接

发布于 2024-09-10 19:14:40 字数 230 浏览 6 评论 0原文

我有一个 ASP.NET 项目,它依赖于 FreeImage .NET 包装器。这是使用对外部目录的引用来加载的。包装器依赖于存在的 FreeImage.dll 来工作(显然)。

如何让 Visual Studio 包含对 FreeImage dll 的引用。它不是 .NET 程序集,我认为它是用其他东西构建的(所以我无法将其添加为参考)。

我真的不想有这个项目的副本,因为这些文件驻留在不同的 SVN 存储库中

I have a ASP.NET project which relies upon the FreeImage .NET wrapper. This is loaded using a reference to a external directory. The wrapper relies upon the FreeImage.dll being present to work (clearly).

How do I get Visual Studio to include a reference to the FreeImage dll. It's not a .NET assembly, i think it was built in something else (so I can't add it as a reference).

I don't really want to have a copy for this project as these files reside in a different SVN repository

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

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

发布评论

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

评论(2

无法言说的痛 2024-09-17 19:14:40

添加预构建宏/脚本以在每次构建时复制文件。没有办法将符号链接添加到 visstudio 中。

Add a pre-build macro/script to copy the file across each time you build. There's no way to add a symbolic link into a visstudio afaik.

不再见 2024-09-17 19:14:40

我假设 .dll 是使用 .NET 支持的语言(如 C#)构建的。

您只需右键单击该站点并选择“添加引用”即可。

浏览到您要查找的 .dll,然后单击“确定”添加它。

它应该向您的站点和 dll 添加一个 .refresh 文件。 .refresh 文件被签入源代码管理中,让站点知道 .dll 相对于站点的位置。

I am assuming the .dll was built using a .NET supported language like C#.

You can just right click over the site and select 'Add Reference'.

Browse to the .dll you are looking for and then click 'Ok' to add it.

It should add a .refresh file to your site and the dll. The .refresh file is what is checked into your source control letting the site know the relative location of the .dll to the site.

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