2
0

DotNetTools 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. commit 90c00988bfd586acef4c9309609d046b3f897871
  2. Author: Nate McMaster (automated) <[email protected]>
  3. Date: Mon Jul 2 12:40:18 2018 -0700
  4. [automated] Change default branch to master
  5. diff --git a/.appveyor.yml b/.appveyor.yml
  6. index 4eea96ab69c..d45bd5a1f80 100644
  7. --- a/.appveyor.yml
  8. +++ b/.appveyor.yml
  9. @@ -2,7 +2,7 @@ init:
  10. - git config --global core.autocrlf true
  11. branches:
  12. only:
  13. - - dev
  14. + - master
  15. - /^release\/.*$/
  16. - /^(.*\/)?ci-.*$/
  17. build_script:
  18. diff --git a/.travis.yml b/.travis.yml
  19. index 64bdbb4441c..ab3980055c0 100644
  20. --- a/.travis.yml
  21. +++ b/.travis.yml
  22. @@ -16,7 +16,7 @@ addons:
  23. - libunwind8
  24. branches:
  25. only:
  26. - - dev
  27. + - master
  28. - /^release\/.*$/
  29. - /^(.*\/)?ci-.*$/
  30. before_install:
  31. diff --git a/.vsts-pipelines/builds/ci-internal.yml b/.vsts-pipelines/builds/ci-internal.yml
  32. index d7ceb763786..c2c5336fd0f 100644
  33. --- a/.vsts-pipelines/builds/ci-internal.yml
  34. +++ b/.vsts-pipelines/builds/ci-internal.yml
  35. @@ -1,5 +1,5 @@
  36. trigger:
  37. -- dev
  38. +- master
  39. - release/*
  40. resources:
  41. @@ -7,7 +7,7 @@ resources:
  42. - repository: buildtools
  43. type: git
  44. name: aspnet-BuildTools
  45. - ref: refs/heads/dev
  46. + ref: refs/heads/master
  47. phases:
  48. - template: .vsts-pipelines/templates/project-ci.yml@buildtools
  49. diff --git a/.vsts-pipelines/builds/ci-public.yml b/.vsts-pipelines/builds/ci-public.yml
  50. index b7f25723f8b..507c89b0250 100644
  51. --- a/.vsts-pipelines/builds/ci-public.yml
  52. +++ b/.vsts-pipelines/builds/ci-public.yml
  53. @@ -1,5 +1,5 @@
  54. trigger:
  55. -- dev
  56. +- master
  57. - release/*
  58. # See https://github.com/aspnet/BuildTools
  59. @@ -9,7 +9,7 @@ resources:
  60. type: github
  61. endpoint: DotNet-Bot GitHub Connection
  62. name: aspnet/BuildTools
  63. - ref: refs/heads/dev
  64. -
  65. + ref: refs/heads/master
  66. +
  67. phases:
  68. - template: .vsts-pipelines/templates/project-ci.yml@buildtools
  69. diff --git a/korebuild.json b/korebuild.json
  70. index 4d59ad132a7..1d75d9ef894 100644
  71. --- a/korebuild.json
  72. +++ b/korebuild.json
  73. @@ -1,6 +1,6 @@
  74. {
  75. - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
  76. - "channel": "dev",
  77. + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
  78. + "channel": "master",
  79. "toolsets": {
  80. "visualstudio": {
  81. "required": [
  82. diff --git a/run.ps1 b/run.ps1
  83. index 3b273824681..34604c71758 100644
  84. --- a/run.ps1
  85. +++ b/run.ps1
  86. @@ -52,8 +52,8 @@ in the file are overridden by command line parameters.
  87. Example config file:
  88. ```json
  89. {
  90. - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
  91. - "channel": "dev",
  92. + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/master/tools/korebuild.schema.json",
  93. + "channel": "master",
  94. "toolsSource": "https://aspnetcore.blob.core.windows.net/buildtools"
  95. }
  96. ```
  97. @@ -192,7 +192,7 @@ if (!$DotNetHome) {
  98. else { Join-Path $PSScriptRoot '.dotnet'}
  99. }
  100. -if (!$Channel) { $Channel = 'dev' }
  101. +if (!$Channel) { $Channel = 'master' }
  102. if (!$ToolsSource) { $ToolsSource = 'https://aspnetcore.blob.core.windows.net/buildtools' }
  103. # Execute
  104. diff --git a/run.sh b/run.sh
  105. index 02aac158742..61f7a533855 100755
  106. --- a/run.sh
  107. +++ b/run.sh
  108. @@ -248,7 +248,7 @@ if [ -f "$config_file" ]; then
  109. [ ! -z "${config_tools_source:-}" ] && tools_source="$config_tools_source"
  110. fi
  111. -[ -z "$channel" ] && channel='dev'
  112. +[ -z "$channel" ] && channel='master'
  113. [ -z "$tools_source" ] && tools_source='https://aspnetcore.blob.core.windows.net/buildtools'
  114. get_korebuild