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)
15  - tag: package-2020-01
16  - tag: package-2019-01-preview
17```
18
19### Tag: package-2020-01 and go
20
21These settings apply only when `--tag=package-2020-01 --go` is specified on the command line.
22Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
23
24```yaml $(tag) == 'package-2020-01' && $(go)
25output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2020-01-01/$(namespace)
26```
27
28### Tag: package-2019-01-preview and go
29
30These settings apply only when `--tag=package-2019-01-preview --go` is specified on the command line.
31Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.
32
33```yaml $(tag) == 'package-2019-01-preview' && $(go)
34output-folder: $(go-sdk-folder)/services/preview/$(namespace)/mgmt/2019-01-01-preview/$(namespace)
35```
36