From e94bb9dbfeadf7aa2359a4cf0ccdd6eaf0999bed Mon Sep 17 00:00:00 2001 From: Josh Mudge Date: Tue, 12 Nov 2019 15:53:18 -0700 Subject: [PATCH] Move generate. --- All/Sign Using OV Cert.md | 6 +++--- All/versioninfo.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/All/Sign Using OV Cert.md b/All/Sign Using OV Cert.md index c628f52..9458889 100644 --- a/All/Sign Using OV Cert.md +++ b/All/Sign Using OV Cert.md @@ -25,10 +25,8 @@ Download `server.go` by running the following in a command prompt: powershell -Command Invoke-WebRequest -OutFile server.go https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/server.go # Download a pre-made config file for goversioninfo: -powershell -Command Invoke-WebRequest -OutFile versioninfo.json https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/versioninfo.json -# Then generate the configuration by running the following in a command prompt: -go generate +powershell -Command Invoke-WebRequest -OutFile versioninfo.json https://git.rootprojects.org/josh/code-signing-final/raw/branch/master/All/versioninfo.json ``` This will create a configuration file named `versioninfo.json` in the current directory. There are three things you will want to edit: 1. The version of the application, 2. The "publisher" or company name and 3. The product name. @@ -43,6 +41,8 @@ Next, you can set the "publisher name" by filling in the `CompanyName` value wit Lastly, you can give your application a name, like "Go Web Server" under the `ProductName` value. ``` +# Generate the info goversioninfo needs by running the following in a command prompt: +go generate # Next, build your server app. go build -o server.exe -ldflags "-s -w -H=windowsgui" ``` diff --git a/All/versioninfo.json b/All/versioninfo.json index cacdb61..76ec63f 100644 --- a/All/versioninfo.json +++ b/All/versioninfo.json @@ -23,7 +23,7 @@ "CompanyName": "Root Group LLC.", "FileDescription": "A Go Web Server", "FileVersion": "1.0", - "InternalName": "serve", + "InternalName": "go-server", "LegalCopyright": "(C) Root Group LLC.", "LegalTrademarks": "", "OriginalFilename": "",