KestrelHttpServer 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. commit bcc9bce87b462f63362b1915d7c831790a3ca6e7
  2. Author: Nate McMaster <[email protected]>
  3. Date: Thu Jun 28 16:20:37 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/benchmarkapps/PlatformBenchmarks/benchmarks.json.json b/benchmarkapps/PlatformBenchmarks/benchmarks.json.json
  44. index 157cee28dc3..9ae9f4836fc 100644
  45. --- a/benchmarkapps/PlatformBenchmarks/benchmarks.json.json
  46. +++ b/benchmarkapps/PlatformBenchmarks/benchmarks.json.json
  47. @@ -5,11 +5,11 @@
  48. "Source": {
  49. "Repository": "https://github.com/aspnet/KestrelHttpServer.git",
  50. - "BranchOrCommit": "dev",
  51. + "BranchOrCommit": "release/2.2",
  52. "Project": "benchmarkapps/PlatformBenchmarks/PlatformBenchmarks.csproj"
  53. }
  54. },
  55. "JsonPlatform": {
  56. "Path": "/json"
  57. }
  58. -}
  59. \ No newline at end of file
  60. +}
  61. diff --git a/benchmarkapps/PlatformBenchmarks/benchmarks.plaintext.json b/benchmarkapps/PlatformBenchmarks/benchmarks.plaintext.json
  62. index 5ad58aee151..78a3fc1b6e2 100644
  63. --- a/benchmarkapps/PlatformBenchmarks/benchmarks.plaintext.json
  64. +++ b/benchmarkapps/PlatformBenchmarks/benchmarks.plaintext.json
  65. @@ -8,7 +8,7 @@
  66. },
  67. "Source": {
  68. "Repository": "https://github.com/aspnet/KestrelHttpServer.git",
  69. - "BranchOrCommit": "dev",
  70. + "BranchOrCommit": "release/2.2",
  71. "Project": "benchmarkapps/PlatformBenchmarks/PlatformBenchmarks.csproj"
  72. },
  73. "Port": 8080
  74. diff --git a/build/repo.props b/build/repo.props
  75. index fb1ef593d71..cd93ea9da13 100644
  76. --- a/build/repo.props
  77. +++ b/build/repo.props
  78. @@ -5,6 +5,7 @@
  79. <EnableBenchmarkValidation>true</EnableBenchmarkValidation>
  80. <!-- These properties are use by the automation that updates dependencies.props -->
  81. <LineupPackageId>Internal.AspNetCore.Universe.Lineup</LineupPackageId>
  82. + <LineupPackageVersion>2.2.0-*</LineupPackageVersion>
  83. <LineupPackageRestoreSource>https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json</LineupPackageRestoreSource>
  84. </PropertyGroup>
  85. diff --git a/korebuild.json b/korebuild.json
  86. index bd5d51a51b0..d217d06e3e4 100644
  87. --- a/korebuild.json
  88. +++ b/korebuild.json
  89. @@ -1,4 +1,4 @@
  90. {
  91. - "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/dev/tools/korebuild.schema.json",
  92. - "channel": "dev"
  93. + "$schema": "https://raw.githubusercontent.com/aspnet/BuildTools/release/2.2/tools/korebuild.schema.json",
  94. + "channel": "release/2.2"
  95. }