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