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