From 62b534f84c5dd2156c3aabcefb627a4d9fff9dc9 Mon Sep 17 00:00:00 2001 From: Will Godbe Date: Fri, 18 Sep 2020 11:23:12 -0700 Subject: [PATCH 1/6] Generate non-stable version for installer --- src/Installers/Windows/Wix.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Installers/Windows/Wix.targets b/src/Installers/Windows/Wix.targets index 17b41491fafc..e35018762c70 100644 --- a/src/Installers/Windows/Wix.targets +++ b/src/Installers/Windows/Wix.targets @@ -2,7 +2,7 @@ - $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion).0 + $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion).$(FileRevisionVersion) <_FileRevisionVersion>$(VersionSuffixDateStamp) <_FileRevisionVersion Condition=" '$(_FileRevisionVersion)' == '' ">42424 From 4ebc1455fa91136263370948bbfc9057e07157c6 Mon Sep 17 00:00:00 2001 From: Will Godbe Date: Fri, 18 Sep 2020 15:30:44 -0700 Subject: [PATCH 2/6] Fix versions --- src/Installers/Windows/Wix.targets | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Installers/Windows/Wix.targets b/src/Installers/Windows/Wix.targets index e35018762c70..dacb9e790439 100644 --- a/src/Installers/Windows/Wix.targets +++ b/src/Installers/Windows/Wix.targets @@ -1,12 +1,12 @@ - - $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion).$(FileRevisionVersion) <_FileRevisionVersion>$(VersionSuffixDateStamp) <_FileRevisionVersion Condition=" '$(_FileRevisionVersion)' == '' ">42424 - $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion).$(_FileRevisionVersion) + $(AspNetCoreMajorMinorVersion).$(AspNetCorePatchVersion).$(_FileRevisionVersion) + + $(BundleVersion) $(DefineConstants);MajorVersion=$(AspNetCoreMajorVersion) $(DefineConstants);MinorVersion=$(AspNetCoreMinorVersion) @@ -21,7 +21,7 @@ - $(Version);$(Platform);$(VersionSuffix);$(_BuildNumberLabels) + $(Version);$(Platform);$(VersionSuffix) @@ -44,7 +44,7 @@ the upgrade code. Bundle upgrades pivot on Major.Minor.Patch changes. For example, 3.0.1-preview 1 can upgrade to 3.0.1-preview 8, but 3.0.1 cannot upgrade to 3.0.2 or 3.1. --> - $(AspNetCoreMajorVersion).$(AspNetCoreMinorVersion).$(AspNetCorePatchVersion);$(Platform) + $(AspNetCoreMajorMinorVersion);$(Platform) From 1f7fb7c23518b5b6106c3962b293e37ccce1aaaf Mon Sep 17 00:00:00 2001 From: Will Godbe Date: Mon, 21 Sep 2020 09:58:55 -0700 Subject: [PATCH 3/6] Add upgrade codes for 3.1.0-3.1.8 --- .../Windows/SharedFrameworkBundle/Bundle.wxs | 50 +++++++++++++++++++ .../Windows/WindowsHostingBundle/Bundle.wxs | 22 ++++++++ 2 files changed, 72 insertions(+) diff --git a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs index 7f89a593091a..6d8ad2383a0d 100644 --- a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs +++ b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs @@ -1,3 +1,5 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs index e33c79d5e8cf..9e968283bbd2 100644 --- a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs +++ b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs @@ -19,6 +19,28 @@ + + + + + + + + + + + + + + + + + + + + + + From de58e884d708bcb4e370cbe986e03d938724a99a Mon Sep 17 00:00:00 2001 From: Will Godbe Date: Mon, 21 Sep 2020 10:21:35 -0700 Subject: [PATCH 4/6] Fixup --- src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs | 4 +--- src/Installers/Windows/WindowsHostingBundle/Bundle.wxs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs index 6d8ad2383a0d..f372b47431c3 100644 --- a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs +++ b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs @@ -27,7 +27,7 @@ - + @@ -48,10 +48,8 @@ - - diff --git a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs index 9e968283bbd2..94eeaac71cf3 100644 --- a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs +++ b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs @@ -20,7 +20,7 @@ - + From c72ac79dd9af08a8ee45c39261f6d55b5fbe1fd4 Mon Sep 17 00:00:00 2001 From: Will Godbe Date: Mon, 21 Sep 2020 13:57:26 -0700 Subject: [PATCH 5/6] Remove whitespace --- src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs index f372b47431c3..7bfb54773288 100644 --- a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs +++ b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs @@ -1,5 +1,3 @@ - - Date: Wed, 30 Sep 2020 14:32:49 -0700 Subject: [PATCH 6/6] Add codes for 3.1.9 --- src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs | 8 ++++++-- src/Installers/Windows/WindowsHostingBundle/Bundle.wxs | 4 +++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs index 7bfb54773288..d45b962b88d8 100644 --- a/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs +++ b/src/Installers/Windows/SharedFrameworkBundle/Bundle.wxs @@ -24,9 +24,11 @@ - + + + @@ -47,8 +49,10 @@ - + + + diff --git a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs index 94eeaac71cf3..51eb30849826 100644 --- a/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs +++ b/src/Installers/Windows/WindowsHostingBundle/Bundle.wxs @@ -19,8 +19,10 @@ - + + +