├── .gitattributes ├── .github └── workflows │ └── unit-tests.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd └── goversioninfo │ └── main.go ├── example_test.go ├── go.mod ├── go.sum ├── goversioninfo.go ├── goversioninfo_test.go ├── icon.go ├── icon_test.go ├── lang_cs.go ├── structbuild.go └── testdata ├── bash └── build.sh ├── example32 ├── main.go └── versioninfo.json ├── example64-gofile ├── main.go └── versioninfo.json ├── example64 ├── main.go └── versioninfo.json ├── gofile ├── cmd.go ├── control.go ├── explorer.go └── simple.go ├── hex ├── cmd.hex ├── control.hex ├── explorer.hex └── simple.hex ├── json ├── bad.json ├── cmd.json ├── control.json ├── explorer.json └── simple.json ├── rc ├── cmd.rc ├── control.rc ├── explorer.rc └── versioninfo.rc └── resource ├── goversioninfo.exe.manifest ├── icon.ico └── versioninfo.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/README.md -------------------------------------------------------------------------------- /cmd/goversioninfo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/cmd/goversioninfo/main.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/example_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/go.sum -------------------------------------------------------------------------------- /goversioninfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/goversioninfo.go -------------------------------------------------------------------------------- /goversioninfo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/goversioninfo_test.go -------------------------------------------------------------------------------- /icon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/icon.go -------------------------------------------------------------------------------- /icon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/icon_test.go -------------------------------------------------------------------------------- /lang_cs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/lang_cs.go -------------------------------------------------------------------------------- /structbuild.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/structbuild.go -------------------------------------------------------------------------------- /testdata/bash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/bash/build.sh -------------------------------------------------------------------------------- /testdata/example32/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example32/main.go -------------------------------------------------------------------------------- /testdata/example32/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example32/versioninfo.json -------------------------------------------------------------------------------- /testdata/example64-gofile/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example64-gofile/main.go -------------------------------------------------------------------------------- /testdata/example64-gofile/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example64-gofile/versioninfo.json -------------------------------------------------------------------------------- /testdata/example64/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example64/main.go -------------------------------------------------------------------------------- /testdata/example64/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/example64/versioninfo.json -------------------------------------------------------------------------------- /testdata/gofile/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/gofile/cmd.go -------------------------------------------------------------------------------- /testdata/gofile/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/gofile/control.go -------------------------------------------------------------------------------- /testdata/gofile/explorer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/gofile/explorer.go -------------------------------------------------------------------------------- /testdata/gofile/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/gofile/simple.go -------------------------------------------------------------------------------- /testdata/hex/cmd.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/hex/cmd.hex -------------------------------------------------------------------------------- /testdata/hex/control.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/hex/control.hex -------------------------------------------------------------------------------- /testdata/hex/explorer.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/hex/explorer.hex -------------------------------------------------------------------------------- /testdata/hex/simple.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/hex/simple.hex -------------------------------------------------------------------------------- /testdata/json/bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/json/bad.json -------------------------------------------------------------------------------- /testdata/json/cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/json/cmd.json -------------------------------------------------------------------------------- /testdata/json/control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/json/control.json -------------------------------------------------------------------------------- /testdata/json/explorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/json/explorer.json -------------------------------------------------------------------------------- /testdata/json/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/json/simple.json -------------------------------------------------------------------------------- /testdata/rc/cmd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/rc/cmd.rc -------------------------------------------------------------------------------- /testdata/rc/control.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/rc/control.rc -------------------------------------------------------------------------------- /testdata/rc/explorer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/rc/explorer.rc -------------------------------------------------------------------------------- /testdata/rc/versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/rc/versioninfo.rc -------------------------------------------------------------------------------- /testdata/resource/goversioninfo.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/resource/goversioninfo.exe.manifest -------------------------------------------------------------------------------- /testdata/resource/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/resource/icon.ico -------------------------------------------------------------------------------- /testdata/resource/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephspurrier/goversioninfo/HEAD/testdata/resource/versioninfo.json --------------------------------------------------------------------------------