如何开始使用NSIS组件

如何开始使用NSIS组件,nsis,Nsis,大宗报价 我是新来NSIS的。我已经有了一个包含服务的windows应用程序,从那个里开始通信,我创建了一个使用.NET开发的安装项目。现在我想知道如何将此设置转换为NSIS设置。到目前为止,我已经创建了欢迎页面、许可页面,现在我被困在组件页面中。因为我的项目也包含许多第三方DLL。我不知道如何开始。有人能建议如何与NSIS合作吗 大宗报价 “组件”页面显示脚本中的命名部分,用户可以选择要安装的组件: Page components Page instfiles Section "Main P

大宗报价

我是新来NSIS的。我已经有了一个包含服务的windows应用程序,从那个里开始通信,我创建了一个使用.NET开发的安装项目。现在我想知道如何将此设置转换为NSIS设置。到目前为止,我已经创建了欢迎页面、许可页面,现在我被困在组件页面中。因为我的项目也包含许多第三方DLL。我不知道如何开始。有人能建议如何与NSIS合作吗

大宗报价


“组件”页面显示脚本中的命名部分,用户可以选择要安装的组件:

Page components
Page instfiles

Section "Main Program"
SectionIn RO ; Read only, always installed
Setoutpath $instdir
File "myapp.exe"
SectionEnd

Section "Foo component"
Setoutpath $instdir\plugins
File "Foo.dll"
SectionEnd

Section "Bar component"
Setoutpath $instdir\plugins
File "Bar.dll"
SectionEnd

“组件”页面显示脚本中的命名部分,用户可以选择要安装的组件:

Page components
Page instfiles

Section "Main Program"
SectionIn RO ; Read only, always installed
Setoutpath $instdir
File "myapp.exe"
SectionEnd

Section "Foo component"
Setoutpath $instdir\plugins
File "Foo.dll"
SectionEnd

Section "Bar component"
Setoutpath $instdir\plugins
File "Bar.dll"
SectionEnd