如何在安装项目中使用安装配置变量?
使用.net的安装项目,我想将我的软件安装位置写入注册表,以帮助插件知道主应用程序在哪里。我可以使用某种 %variable% 来代表安装应用程序的文件夹吗?
Using .net's setup project, I want to write the location that my software is installed to into the registry, in order to help a plugin know where the main application is. Is there some kind of %variable% I can use which represents the folder to which the application was installed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在文件系统视图中查看应用程序文件夹的属性,您会发现它有一个名为“Property”的属性,其值为“TARGETDIR”。您可以在任何其他视图中使用 [TARGETDIR] 来表示所选的安装目录。
If you look at the properties for Application Folder in File System view, it has a property called "Property" with value "TARGETDIR". You can use [TARGETDIR] in any of the other views to represent the chosen installation directory.