rsrc
rsrc copied to clipboard
Tool for embedding .ico & manifest resources in Go programs for Windows.
I'm at Windows 11, and have the below: 1. app.ico 2. app.exe.manifest ```xml Contoso Example Application True s ``` 3. release.bat ```bat rsrc -manifest app.exe.manifest -ico=app.ico -o rsrc.syso go build...
~~~~~~~ F:\care\work\gtool>go build # _/F_/care/work/gtool D:/msys64/mingw32/bin/../lib/gcc/i686-w64-mingw32/9.2.0/../../../../i686-w64-mingw32/bin/ld.exe: $WORK\b001\exe\a.out.exe: .rsrc merge failure: corrupt .rsrc section F:\care\work\gtool>go env set GO111MODULE= set GOARCH=386 set GOBIN= set GOCACHE=C:\Users\jack\AppData\Local\go-build set GOENV=C:\Users\jack\AppData\Roaming\go\env set GOEXE=.exe set GOFLAGS= set...
The error that showed up in #35 was confusing enough that even I wasn't sure where it comes from. If the message gave more details (like maybe at least: "error:...
This addresses: https://github.com/akavel/rsrc/issues/10
I really need to have an icon, a manifest _and_ version details Currently I'm caught between this project and [https://github.com/josephspurrier/goversioninfo](https://github.com/josephspurrier/goversioninfo) - which does icons and versions, but not manifests Would...
how can i get the resource id when id append a icon?
I think there are some Windows APIs for reading resources from an .exe file on disk. Those could be used to verify that we've built a .syso that results in...
add a list of alternative similar projects in README, e.g. based on the thread: https://groups.google.com/d/topic/golang-nuts/_LszV5IqBWg/discussion