You can run go build with a go 1.11 toolchain outside of the GOPATH and the build should download dependencies automatically and the build should be clean
also you can export GOPROXY=https://microsoftgoproxy.azurewebsites.net and it'll download dependencies from a server instead of GitHub, which is helpful for speed and build reliability. that part is optional though
You can run
go build
with a go 1.11 toolchain outside of theGOPATH
and the build should download dependencies automatically and the build should be cleanalso you can
export GOPROXY=https://microsoftgoproxy.azurewebsites.net
and it'll download dependencies from a server instead of GitHub, which is helpful for speed and build reliability. that part is optional though