Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 4aed4ad

Browse files
author
Nate McMaster (automated)
committed
[automated] Change default branch to master
1 parent 4f1f97b commit 4aed4ad

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Diff for: .appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ init:
22
- git config --global core.autocrlf true
33
branches:
44
only:
5-
- dev
5+
- master
66
- /^release\/.*$/
77
- /^(.*\/)?ci-.*$/
88
build_script:

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ os:
1212
osx_image: xcode8.2
1313
branches:
1414
only:
15-
- dev
15+
- master
1616
- /^release\/.*$/
1717
- /^(.*\/)?ci-.*$/
1818
before_install:

Diff for: .vsts-pipelines/builds/ci-internal.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
trigger:
2-
- dev
2+
- master
33
- release/*
44

55
resources:
66
repositories:
77
- repository: buildtools
88
type: git
99
name: aspnet-BuildTools
10-
ref: refs/heads/dev
10+
ref: refs/heads/master
1111

1212
phases:
1313
- template: .vsts-pipelines/templates/project-ci.yml@buildtools

Diff for: .vsts-pipelines/builds/ci-public.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
trigger:
2-
- dev
2+
- master
33
- release/*
44

55
# See https://github.com/aspnet/BuildTools
@@ -9,7 +9,7 @@ resources:
99
type: github
1010
endpoint: DotNet-Bot GitHub Connection
1111
name: aspnet/BuildTools
12-
ref: refs/heads/dev
13-
12+
ref: refs/heads/master
13+
1414
phases:
1515
- template: .vsts-pipelines/templates/project-ci.yml@buildtools

Diff for: korebuild.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
3-
"channel": "dev"
2+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
3+
"channel": "master"
44
}

Diff for: run.ps1

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ in the file are overridden by command line parameters.
5252
Example config file:
5353
```json
5454
{
55-
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
56-
"channel": "dev",
55+
"$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
56+
"channel": "master",
5757
"toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
5858
}
5959
```
@@ -192,7 +192,7 @@ if (!$DotNetHome) {
192192
else { Join-Path $PSScriptRoot '.dotnet'}
193193
}
194194

195-
if (!$Channel) { $Channel = 'dev' }
195+
if (!$Channel) { $Channel = 'master' }
196196
if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' }
197197

198198
# Execute

Diff for: run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ if [ -f "$config_file" ]; then
248248
[ ! -z "${config_tools_source:-}" ] && tools_source="$config_tools_source"
249249
fi
250250

251-
[ -z "$channel" ] && channel='dev'
251+
[ -z "$channel" ] && channel='master'
252252
[ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools'
253253

254254
get_korebuild

0 commit comments

Comments
 (0)