Visual Studio 2010:托管项目对本机项目的依赖关系

发布于 2024-12-02 05:19:31 字数 360 浏览 1 评论 0原文

无法在本机上“添加引用”托管项目。

我发现这里这可以通过“添加项目”-对 dll 的引用来实现。但在这种情况下,依赖项目的重建将不会发生。

如果我通过 项组项直接在项目文件中添加依赖项,VS 将在引用中显示依赖项项目,但带有感叹号 (!)。

如何在原生上顺利添加托管项目的引用? 谢谢!

It is not possible to "Add reference" of managed project on native.

I have found here that this is possible via "Add item" - reference to dll. But in such case rebuild of dependent projects will not happen.

If I add dependency directly in project files via <ProjectReference> item group item, VS shows dependent project in References, but with Exclamation mark (!).

How to add reference of managed project on native one smoothly?
Thanks!

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

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

发布评论

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

评论(1

伏妖词 2024-12-09 05:19:31

如果您尝试在解决方案级别捕获项目间构建依赖关系,而这些项目实际上无法相互引用,则可以通过右键单击相关项目并选择“项目依赖关系”在 Visual Studio 内设置显式依赖关系。 ……”。

您可以在此处显式指定依赖项(但隐式依赖项将已显示为灰色)。以这种方式添加依赖项将更改解决方案 (.sln) 文件中的一个或多个 ProjectDependency 部分,以便从 devenv.exe 或 msbuild.exe 构建该解决方案将确保正确的构建顺序。

If you are trying to capture inter-project build dependencies at the solution level where those projects can't actually reference each other, you can set up explicit dependencies inside Visual Studio by right-clicking on the project in question and choosing "Project Dependencies...".

You can explicitly specify the dependencies here (but implicit dependencies will already be greyed out). Adding dependencies in this way will alter one or more ProjectDependencies sections in the solution (.sln) file so that building it from either devenv.exe or msbuild.exe will ensure correct build order.

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