如何将C#安装路径写入注册表的提问
安装程序如将项目的安装路径写入注册表 如:
- key =myform
- value =E:\test\SystemTray\SystemTray.EXE
如何将C#安装路径写入注册表的回答1
Value = [TARGETDIR]\后面是你的相对路径
如何将C#安装路径写入注册表的回答2
获取安装路径
- string str = Assembly.GetExecutingAssembly().GetName().CodeBase;
- if (str.ToLower().IndexOf("file:///") >= 0)
- {
- str = str.Substring(8, str.Length - 8);
- }
- string path = System.IO.Path.GetDirectoryName(str);//这个就是安装路径
如何将C#安装路径写入注册表的回答3
在自定义操作中添加属性数据.
- /dir=[TARGETVDIR] /targetdir="[TARGETDIR]\