Open sstojak1 opened 2 months ago
What helped me is that I added the following in the generated project.nsi
file:
!system 'signtool --file "..\..\bin\${INFO_PROJECTNAME}.exe"'
I placed this command just before the OutFile "..\..\bin\${INFO_PROJECTNAME}-${ARCH}-installer.exe"
line is executed. Does this approach seem valid?
Given that both !uninstfinalize
and !finalize
are currently commented out, should we also consider commenting out the proposed signing step for the app binary?
Bumping this. Really important for prod apps.
Description
When I build a Wails app using the -nsis option, Wails signs the installer and uninstaller binaries, but not the other binaries (like my app). Is that expected?
To sign the uninstaller and installer, I use
!uninstfinalize
and!finalize
like stated in theproject.nsi
but I'm unable to sign the app binary itself.To Reproduce
wails build -platform windows/amd64 -nsis --clean
Expected behaviour
To have a signed app binary
Screenshots
No response
Attempted Fixes
No response
System Details
Additional context
No response