From cc22ea1ed3a72741af5553a44650a67b89521265 Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 24 May 2018 20:19:11 -0700 Subject: [PATCH 1/7] Test updated implicit version implementation --- test/TemplateTests.props.in | 1 + test/TemplateTests.targets.in | 16 ++++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/test/TemplateTests.props.in b/test/TemplateTests.props.in index beb6073223..33193ea941 100644 --- a/test/TemplateTests.props.in +++ b/test/TemplateTests.props.in @@ -1,6 +1,7 @@ true + NU1605 ${RestoreSources} ${RuntimeFrameworkVersion} ${MicrosoftNETSdkRazorPackageVersion} diff --git a/test/TemplateTests.targets.in b/test/TemplateTests.targets.in index 177e5a8721..e8d55f0732 100644 --- a/test/TemplateTests.targets.in +++ b/test/TemplateTests.targets.in @@ -39,28 +39,32 @@ Copyright (c) .NET Foundation. All rights reserved. + 2.1.0 + - ${BundledAspNetCoreAllPackageVersion} + ${BundledAspNetCoreAllPackageVersion} $(_TargetFrameworkVersionWithoutV) + 2.1.0 + - ${BundledAspNetCoreAppPackageVersion} + ${BundledAspNetCoreAppPackageVersion} $(_TargetFrameworkVersionWithoutV) - + - ${BundledAspNetCoreAllPackageVersion} @@ -69,10 +73,10 @@ Copyright (c) .NET Foundation. All rights reserved. - + - ${BundledAspNetCoreAppPackageVersion} From 7579b6db683952c7a811a61219961a9e4297db00 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 25 May 2018 11:51:13 -0700 Subject: [PATCH 2/7] Install 2.1.0 --- build/repo.props | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/repo.props b/build/repo.props index 90586caed5..111162bec9 100644 --- a/build/repo.props +++ b/build/repo.props @@ -11,6 +11,11 @@ + + + https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/20180515-07/final/assets + + From f278c804b2daedaffd97070bc478179c5462f913 Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 30 May 2018 12:04:51 -0700 Subject: [PATCH 3/7] Revert "Install 2.1.0" This reverts commit bdddcfc77435d59e925828df1f2b76e443db022a. --- build/repo.props | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/repo.props b/build/repo.props index 111162bec9..90586caed5 100644 --- a/build/repo.props +++ b/build/repo.props @@ -11,11 +11,6 @@ - - - https://dotnetfeed.blob.core.windows.net/orchestrated-release-2-1/20180515-07/final/assets - - From f953d70d75501adb5383117a0691df60035585c9 Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 30 May 2018 12:05:34 -0700 Subject: [PATCH 4/7] Update to 2.1.1 --- test/TemplateTests.targets.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/TemplateTests.targets.in b/test/TemplateTests.targets.in index e8d55f0732..84a4ef164a 100644 --- a/test/TemplateTests.targets.in +++ b/test/TemplateTests.targets.in @@ -39,7 +39,7 @@ Copyright (c) .NET Foundation. All rights reserved. - 2.1.0 + 2.1.1 @@ -50,7 +50,7 @@ Copyright (c) .NET Foundation. All rights reserved. - 2.1.0 + 2.1.1 From 48782f97189f8231c1bf39da272bcce59ebad3dc Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 30 May 2018 12:07:57 -0700 Subject: [PATCH 5/7] Remove testing prop --- test/TemplateTests.props.in | 1 - 1 file changed, 1 deletion(-) diff --git a/test/TemplateTests.props.in b/test/TemplateTests.props.in index 33193ea941..beb6073223 100644 --- a/test/TemplateTests.props.in +++ b/test/TemplateTests.props.in @@ -1,7 +1,6 @@ true - NU1605 ${RestoreSources} ${RuntimeFrameworkVersion} ${MicrosoftNETSdkRazorPackageVersion} From d2025d516c8f9905b0cd13e86a66e6c429db727c Mon Sep 17 00:00:00 2001 From: John Luo Date: Wed, 30 May 2018 17:15:48 -0700 Subject: [PATCH 6/7] Update implementation --- test/GenerateTestProps.targets | 9 +++++++++ test/TemplateTests.props.in | 2 ++ test/TemplateTests.targets.in | 10 ++++++++-- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/test/GenerateTestProps.targets b/test/GenerateTestProps.targets index 18b08a5dc9..3287988485 100644 --- a/test/GenerateTestProps.targets +++ b/test/GenerateTestProps.targets @@ -5,6 +5,15 @@ $(PropsProperties);RuntimeFrameworkVersion=$(RuntimeFrameworkVersion) $(PropsProperties);MicrosoftNETSdkRazorPackageVersion=$(MicrosoftNETSdkRazorPackageVersion) + + 2.1.1 + $(MicrosoftAspNetCoreAllPackageVersion) + $(DefaultPatchVersionForAspNetCoreAll2_1) + $(MicrosoftAspNetCoreAppPackageVersion) + + $(PropsProperties);DefaultPatchVersionForAspNetCoreAll2_1=$(DefaultPatchVersionForAspNetCoreAll2_1) + $(PropsProperties);DefaultPatchVersionForAspNetCoreApp2_1=$(DefaultPatchVersionForAspNetCoreApp2_1) + BundledAspNetCoreAllTargetFrameworkVersion=$(MicrosoftAspNetCoreAllPackageVersion.Split('.')[0]).$(MicrosoftAspNetCoreAllPackageVersion.Split('.')[1]) $(TargetsProperties);BundledAspNetCoreAllPackageVersion=$(MicrosoftAspNetCoreAllPackageVersion) diff --git a/test/TemplateTests.props.in b/test/TemplateTests.props.in index beb6073223..cd7240af05 100644 --- a/test/TemplateTests.props.in +++ b/test/TemplateTests.props.in @@ -4,5 +4,7 @@ ${RestoreSources} ${RuntimeFrameworkVersion} ${MicrosoftNETSdkRazorPackageVersion} + ${DefaultPatchVersionForAspNetCoreAll2_1} + ${DefaultPatchVersionForAspNetCoreApp2_1} diff --git a/test/TemplateTests.targets.in b/test/TemplateTests.targets.in index 84a4ef164a..5d7e98d4bb 100644 --- a/test/TemplateTests.targets.in +++ b/test/TemplateTests.targets.in @@ -37,9 +37,15 @@ Copyright (c) .NET Foundation. All rights reserved. + + + 2.1.1 + 2.1.1 + + - 2.1.1 + $(DefaultPatchVersionForAspNetCoreAll2_1) @@ -50,7 +56,7 @@ Copyright (c) .NET Foundation. All rights reserved. - 2.1.1 + $(DefaultPatchVersionForAspNetCoreApp2_1) From aacb317ffa0a5ce1de6578225823e15fc67fbe5b Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 31 May 2018 15:17:57 -0700 Subject: [PATCH 7/7] Update dependencies to 2.1.1-rtm-30818 --- build/dependencies.props | 48 ++++++++++++++++++++-------------------- build/repo.props | 2 +- korebuild-lock.txt | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/build/dependencies.props b/build/dependencies.props index 4ce45e61bf..d18564ee03 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -3,41 +3,41 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 2.1.0 - 2.1.1-rtm-15790 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 + 2.1.1-rtm-15792 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 2.1.0 - 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 2.1.0 15.6.82 15.6.82 - 2.1.0 - 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 + 2.1.1-rtm-30818 2.1.0 2.1.0 2.0.0 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 15.6.1 2.1.0 - 2.1.0 + 2.1.1-rtm-30818 2.0.3 0.19.0 3.7.0 diff --git a/build/repo.props b/build/repo.props index 90586caed5..a9dc2eb822 100644 --- a/build/repo.props +++ b/build/repo.props @@ -4,7 +4,7 @@ Internal.AspNetCore.Universe.Lineup - 2.1.0-rtm-* + $(VersionPrefix)-* https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json diff --git a/korebuild-lock.txt b/korebuild-lock.txt index de0eb84cf3..2b5a6851ae 100644 --- a/korebuild-lock.txt +++ b/korebuild-lock.txt @@ -1,2 +1,2 @@ -version:2.1.1-rtm-15790 -commithash:274c65868e735f29f4078c1884c61c4371ee1fc0 +version:2.1.1-rtm-15792 +commithash:aa4245f5297588f5f8ffc2749df15f6dbc92f5f1