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
正式评论

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

请先登录再写评论。