Executable Name Template?

How can I change the name of of the executable that is generated by GoLand? For example, if I create a Go file named hello.go, the resulting executable is named go_hello_go.exe. I want the executable to be named hello.exe.

0
1 comment
Official comment

Under Run | Edit Configurations..., you can specify Go tool argument in the form '-o hello.exe'.

Please sign in to leave a comment.