diff --git a/build/DependencyVersions.props b/build/DependencyVersions.props index ebc52549d..f70e36923 100644 --- a/build/DependencyVersions.props +++ b/build/DependencyVersions.props @@ -41,7 +41,7 @@ - 1.0.27-prerelease-01611-04 + 1.0.27-prerelease-01723-01 2.0.0-preview2-25331-01 diff --git a/build/publish/FinishBuild.targets b/build/publish/FinishBuild.targets index 709837429..69a9170ae 100644 --- a/build/publish/FinishBuild.targets +++ b/build/publish/FinishBuild.targets @@ -54,9 +54,8 @@ CommitHash="$(CommitHash)" Coherent="$(Coherent)" /> - - + GitHubPassword="$(GITHUB_PASSWORD)" /> diff --git a/build_projects/update-dependencies/Config.cs b/build_projects/update-dependencies/Config.cs index 9938cce68..0bd5a0c6a 100644 --- a/build_projects/update-dependencies/Config.cs +++ b/build_projects/update-dependencies/Config.cs @@ -82,7 +82,8 @@ namespace Microsoft.DotNet.Scripts private static string GetDefaultCoreSetupVersionFragment() { - string coreSetupChannel = GetRepoMSBuildPropValue("BundledRuntimes.props", "CoreSetupChannel") ?? "master"; + // by default, the current core-setup branch should match the current cli branch name + string coreSetupChannel = Instance.GitHubUpstreamBranch; return $"dotnet/core-setup/{coreSetupChannel}"; }