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

Commit 238f461

Browse files
author
Nate McMaster (automated)
committed
[automated] Change default branch to master
1 parent beaa2b4 commit 238f461

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
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:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ addons:
1616
- libunwind8
1717
branches:
1818
only:
19-
- dev
19+
- master
2020
- /^release\/.*$/
2121
- /^(.*\/)?ci-.*$/
2222
before_install:
Lines changed: 2 additions & 2 deletions
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

.vsts-pipelines/builds/ci-public.yml

Lines changed: 3 additions & 3 deletions
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

korebuild.json

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

run.ps1

Lines changed: 3 additions & 3 deletions
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://github.com/raw/aspnet/BuildTools/dev/tools/korebuild.schema.json",
56-
"channel": "dev",
55+
"$schema": "https://github.com/raw/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

run.sh

Lines changed: 1 addition & 1 deletion
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)