如何在 Visual Studio 配置中获取程序文件路径
我按照此教程使 NUnit 测试在 Visual Studio 中可调试。 在调试选项中,我将“启动外部程序:”设置为 C:\Program Files\NUnit 2.4.8\bin\nunit-x86.exe。 有没有办法动态获取程序文件目录以避免其他人在其系统上使用此解决方案时出现问题?
I followed this tutorial to make NUnit tests debugable in Visual Studio. In the debugging options I set "Start external program:" to C:\Program Files\NUnit 2.4.8\bin\nunit-x86.exe.
Is there a way to get the program files directory dynamically to avoid problems when other people work with this solution on their system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
环境变量 $PROGRAMFILES 保存它。 Visual Studio 中的大多数属性都允许您使用环境变量扩展,如下所示:“$(PROGRAMFILES)\NUnit 2.4.8\”
The environment variable $PROGRAMFILES holds this. Most properties in visual studio allow you to use environment variable expansion like this: "$(PROGRAMFILES)\NUnit 2.4.8\"
%ProgamFiles%(如果在 Windows 路径中使用)。
%ProgamFiles% if using in a Windows path.