如何在 Visual Studio 中设置路径环境变量?

发布于 2024-08-27 17:08:49 字数 98 浏览 8 评论 0原文

我在构建后步骤中使用 ILMerge。
出于互操作性的原因,我想使用 ILMerge 相对路径。
如何设置可从构建后步骤访问的 path 环境变量?

I'm using ILMerge in my post build step.
For interoperability reason I would like use ILMerge relative path.
How can I set the path environment variable accessible from my post build step?

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

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

发布评论

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

评论(1

童话 2024-09-03 17:08:49

默认的 ILMerge 安装路径与任何内容都不相关。如果您想将其添加到 PATH 环境变量中,请在构建后事件中写入以下内容:

set path = %path%;$(programfiles)\microsoft\ilmerge

The default ILMerge install path isn't relative to anything. If you want to add it to the PATH environment variable then write this in your postbuild event:

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