根据构建配置设置 VS DefaultLocation
关于如何获取应用程序文件夹的默认位置(取决于构建配置)的任何想法? (调试 vs 发布 vs Release_Special)
所以如果它在发布中,它将默认为 c:\Program Files\MyApp,如果它的 Release_Special 它将默认为 C:\MyApp\
感谢帮助!
Any ideas on how to get the Default location of the Application Folder, to depend on the Build configuration? (Debug vs Release vs Release_Special)
so if it's on release it will default to c:\Program Files\MyApp and if its Release_Special it will be C:\MyApp\
Appreciate the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您在问两个问题:
I think you're asking two questions:
项目属性页面上有一个设置。
查看“构建”选项卡上的“输出路径”属性。
不幸的是,您必须对解决方案中的每个项目都执行此操作。
HTH。
托马斯
There's a setting for that on the Project properties page.
Look at the Output path property on the Build tab.
Unfortunately, you have to do it for every single project in your solution.
HTH.
Thomas
仅供参考,执行此操作的方法是创建一个标准安装程序,然后使用批处理脚本并将 TARGETDIR 参数传递给 setup.exe 来解决默认安装路径。
谢谢大家的回答!
Just for reference, the way to do this turned out to be creating a standard installer and then solving the default install paths by using a batch script and passing through to setup.exe the TARGETDIR param.
Thanks all for your answers!