如何在 Visual Studio 2008 版本中打印 SET 命令?
我想在构建过程中查看所有当前的环境变量。 如果可能的话,我想在构建前或构建后步骤中执行此操作,因为我不想编辑目标文件。 这可以打印到输出窗口或文件。 我尝试了多种不同的方法但没有成功。 我正在使用 Visual Studio 2008。谢谢!
I want to see all of the current environment variables during a build. I'd like to do this in the pre or post-build steps if possible because I don't want to edit the Targets file. This could print to the Output window or to a file. I've tried a number of different ways without success. I'm using Visual Studio 2008. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是在 Post Build 事件中键入 set ,它会在输出窗口中显示环境变量。
If you just keyin set in the Post Build event, it displays the environment variables in the output window.