1## Go
2
3These settings apply only when `--go` is specified on the command line.
4
5```yaml $(go)
6go:
7  license-header: MICROSOFT_MIT_NO_VERSION
8  namespace: securityinsight
9  clear-output-folder: true
10```
11
12### Go multi-api
13
14```yaml $(go) && $(multiapi)
15batch:
16```
17
18### Tag: package-2020-01 and go
19
20These settings apply only when `--tag=package-2020-01 --go` is specified on the command line.
21Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
22
23```yaml $(tag) == 'package-2020-01' && $(go)
24output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-01-01/$(namespace)
25```
26
27### Tag: package-2019-01-preview and go
28
29These settings apply only when `--tag=package-2019-01-preview --go` is specified on the command line.
30Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
31
32```yaml $(tag) == 'package-2019-01-preview' && $(go)
33output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2019-01-01-preview/$(namespace)
34```