StaticFiles 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. commit 91f4696ae62d6e1cfd284468d228d9adaa924301
  2. Author: Nate McMaster <[email protected]>
  3. Date: Thu Jun 28 16:22:07 2018 -0700
  4. Update infrastructure for the 2.2 release
  5. diff --git a/.vsts-pipelines/builds/ci-internal.yml b/.vsts-pipelines/builds/ci-internal.yml
  6. index d7ceb763786..dc7b8a3cb92 100644
  7. --- a/.vsts-pipelines/builds/ci-internal.yml
  8. +++ b/.vsts-pipelines/builds/ci-internal.yml
  9. @@ -1,5 +1,5 @@
  10. trigger:
  11. -- dev
  12. +- master
  13. - release/*
  14. resources:
  15. @@ -7,7 +7,7 @@ resources:
  16. - repository: buildtools
  17. type: git
  18. name: aspnet-BuildTools
  19. - ref: refs/heads/dev
  20. + ref: refs/heads/release/2.2
  21. phases:
  22. - template: .vsts-pipelines/templates/project-ci.yml@buildtools
  23. diff --git a/.vsts-pipelines/builds/ci-public.yml b/.vsts-pipelines/builds/ci-public.yml
  24. index b7f25723f8b..f5087d9c309 100644
  25. --- a/.vsts-pipelines/builds/ci-public.yml
  26. +++ b/.vsts-pipelines/builds/ci-public.yml
  27. @@ -1,5 +1,5 @@
  28. trigger:
  29. -- dev
  30. +- master
  31. - release/*
  32. # See https://github.com/aspnet/BuildTools
  33. @@ -9,7 +9,7 @@ resources:
  34. type: github
  35. endpoint: DotNet-Bot GitHub Connection
  36. name: aspnet/BuildTools
  37. - ref: refs/heads/dev
  38. -
  39. + ref: refs/heads/release/2.2
  40. +
  41. phases:
  42. - template: .vsts-pipelines/templates/project-ci.yml@buildtools
  43. diff --git a/build/repo.props b/build/repo.props
  44. index 17a98ac7e7d..f1fe24dd273 100644
  45. --- a/build/repo.props
  46. +++ b/build/repo.props
  47. @@ -4,6 +4,7 @@
  48. <PropertyGroup>
  49. <!-- These properties are use by the automation that updates dependencies.props -->
  50. <LineupPackageId>Internal.AspNetCore.Universe.Lineup</LineupPackageId>
  51. + <LineupPackageVersion>2.2.0-*</LineupPackageVersion>
  52. <LineupPackageRestoreSource>https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json</LineupPackageRestoreSource>
  53. </PropertyGroup>
  54. diff --git a/korebuild.json b/korebuild.json
  55. index bd5d51a51b0..d217d06e3e4 100644
  56. --- a/korebuild.json
  57. +++ b/korebuild.json
  58. @@ -1,4 +1,4 @@
  59. {
  60. - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
  61. - "channel": "dev"
  62. + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.2/tools/korebuild.schema.json",
  63. + "channel": "release/2.2"
  64. }