我想将服务文件复制到 {app} 目录,然后将其用作 InstallUtil.exe 中的参数。
这是我的代码的一部分:
[Files]
Source: WCFService.exe; DestDir: {app}
Source: WCFService.exe.config; DestDir: {app}
[Run]
Filename: {dotnet40}\InstallUtil.exe; Parameters: {app}\WCFService.exe
此代码不起作用(但文件已正确复制到 {app} 目录中)。但是,如果我使用这样的东西:
[Files]
Source: WCFService.exe; DestDir: {src}
Source: WCFService.exe.config; DestDir: {src}
[Run]
Filename: {dotnet40}\InstallUtil.exe; Parameters: WCFService.exe
它工作正常。有谁知道发生了什么?我必须使用 inno 设置。