如何在 Visual Studio 配置中获取程序文件路径

发布于 2024-07-16 05:26:21 字数 253 浏览 7 评论 0原文

我按照教程使 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 技术交流群。

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

发布评论

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

评论(2

心凉 2024-07-23 05:26:22

环境变量 $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\"

独夜无伴 2024-07-23 05:26:22

%ProgamFiles%(如果在 Windows 路径中使用)。

%ProgamFiles% if using in a Windows path.

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