This repository was archived by the owner on Dec 14, 2018. It is now read-only.
File tree 7 files changed +13
-13
lines changed
7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 2
2
- git config --global core.autocrlf true
3
3
branches :
4
4
only :
5
- - dev
5
+ - master
6
6
- /^release\/.*$/
7
7
- /^(.*\/)?ci-.*$/
8
8
build_script :
Original file line number Diff line number Diff line change 12
12
osx_image : xcode8.2
13
13
branches :
14
14
only :
15
- - dev
15
+ - master
16
16
- /^release\/.*$/
17
17
- /^(.*\/)?ci-.*$/
18
18
before_install :
Original file line number Diff line number Diff line change 1
1
trigger :
2
- - dev
2
+ - master
3
3
- release/*
4
4
5
5
resources :
6
6
repositories :
7
7
- repository : buildtools
8
8
type : git
9
9
name : aspnet-BuildTools
10
- ref : refs/heads/dev
10
+ ref : refs/heads/master
11
11
12
12
phases :
13
13
- template : .vsts-pipelines/templates/project-ci.yml@buildtools
Original file line number Diff line number Diff line change 1
1
trigger :
2
- - dev
2
+ - master
3
3
- release/*
4
4
5
5
# See https://github.com/aspnet/BuildTools
@@ -9,7 +9,7 @@ resources:
9
9
type : github
10
10
endpoint : DotNet-Bot GitHub Connection
11
11
name : aspnet/BuildTools
12
- ref : refs/heads/dev
13
-
12
+ ref : refs/heads/master
13
+
14
14
phases :
15
15
- template : .vsts-pipelines/templates/project-ci.yml@buildtools
Original file line number Diff line number Diff line change 1
1
{
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 "
4
4
}
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ in the file are overridden by command line parameters.
52
52
Example config file:
53
53
```json
54
54
{
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 ",
57
57
"toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
58
58
}
59
59
```
@@ -192,7 +192,7 @@ if (!$DotNetHome) {
192
192
else { Join-Path $PSScriptRoot ' .dotnet' }
193
193
}
194
194
195
- if (! $Channel ) { $Channel = ' dev ' }
195
+ if (! $Channel ) { $Channel = ' master ' }
196
196
if (! $ToolsSource ) { $ToolsSource = ' https://aspnetcore.blob.core.windows.net/buildtools' }
197
197
198
198
# Execute
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ if [ -f "$config_file" ]; then
248
248
[ ! -z " ${config_tools_source:- } " ] && tools_source=" $config_tools_source "
249
249
fi
250
250
251
- [ -z " $channel " ] && channel=' dev '
251
+ [ -z " $channel " ] && channel=' master '
252
252
[ -z " $tools_source " ] && tools_source=' https://aspnetcore.blob.core.windows.net/buildtools'
253
253
254
254
get_korebuild
You can’t perform that action at this time.
0 commit comments