Visual Studio Addin - 在项目加载后更改项目引用而无需“真正”改变他们

发布于 2024-12-25 15:37:03 字数 250 浏览 0 评论 0原文

所以我们的构建系统和源代码控制系统来自 Perforce,这是一个垃圾。

我们想要将项目中对 dll 的引用更改为其他位置,例如,当前引用可能是 C:\blah\debug\blah.dll,我们想要将其更改为 d:\codeinjected\blah\debug\blah.dll

但我们不想在 VStudio 项目文件中执行此操作,因为这也是我们的 MSBuild 构建实验室文件,因此有没有办法制作一个可以动态执行此操作的插件,而无需实际更改引用?

So our build system and source control system is from Perforce, which is a piece of poopers.

We want to change reference to dlls in the project to some other location, for example, current reference might be C:\blah\debug\blah.dll, we want to change it d:\codeinjected\blah\debug\blah.dll

But we don't want to do this is the VStudio project file, because that is also our MSBuild build lab file, so is there a way to make an addin that can do it on the fly, without actually changing the references?

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

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

发布评论

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

评论(1

偷得浮生 2025-01-01 15:37:03

听起来您似乎想更改 Visual Studio 项目的引用 DLL 的位置。最简单的方法是将条件构造添加到 MsBuild 文件本身中。

<Reference Condition="$(OnDevMachine)">
  ...
</Reference>
<Reference Condition="$(OnLabMachine)">
  ...
</Reference>

另一种选择是为所有项目提供一个通用的 msbuild 文件。在该特定项目中,您可以创建一个指向引用目录的有条件定义的值,并让每个叶项目引用该变量。它将减少代码,并且可能更适合您的构建人员。

<PropertyGroup>
  <ReferenceDir Condition="$(OnDevMachine) == 'true'">Some\Dev\Path</ReferenceDir> 
  <ReferenceDir Condition="$(OnLabMachine) == 'true'">Some\Lab\Path</ReferenceDir>
</PropertyGroup>

It sounds like you situationally want to change the location of reference DLL's for a Visual Studio project. The easiest way to do this is to add condional constructs into the MsBuild file itself.

<Reference Condition="$(OnDevMachine)">
  ...
</Reference>
<Reference Condition="$(OnLabMachine)">
  ...
</Reference>

Another option is to have a common msbuild file for all of your projects. In that particular project you can create a conditionally defined value pointing to the reference directory and have every leaf project reference that variable. It will be less code and possibly more amenable to your build guy.

<PropertyGroup>
  <ReferenceDir Condition="$(OnDevMachine) == 'true'">Some\Dev\Path</ReferenceDir> 
  <ReferenceDir Condition="$(OnLabMachine) == 'true'">Some\Lab\Path</ReferenceDir>
</PropertyGroup>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文