Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit 7cba114

Browse files
author
Peter Huene
committed
Add 2.0.5 ASP.NET store to native installers.
1 parent 3c2e78a commit 7cba114

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

build/package/Installer.DEB.proj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<Exec Command="sudo dpkg -i $(DownloadedSharedFrameworkInstallerFile)" />
2828
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime200)" />
2929
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime203)" />
30+
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime205)" />
3031
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime)" />
3132

3233
<!-- Create layout: Binaries -->
@@ -90,6 +91,7 @@
9091
<!-- Remove Shared Framework and Debian Packages -->
9192
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
9293
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName)" />
94+
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName205)" />
9395
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName203)" />
9496
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName200)" />
9597
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
@@ -113,6 +115,7 @@
113115
<Exec Command="sudo dpkg -i $(DownloadedSharedFrameworkInstallerFile)" />
114116
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime200)" />
115117
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime203)" />
118+
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime205)" />
116119
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime)" />
117120

118121
<Exec Command="sudo dpkg -i $(SdkInstallerFile)" />
@@ -128,6 +131,7 @@
128131
<!-- Clean up Packages -->
129132
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
130133
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName)" />
134+
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName205)" />
131135
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName203)" />
132136
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName200)" />
133137
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />

build/package/Installer.DEB.targets

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<AspNetCoreRuntimePackageName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)</AspNetCoreRuntimePackageName>
3939
<AspNetCoreRuntimePackageName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0</AspNetCoreRuntimePackageName200>
4040
<AspNetCoreRuntimePackageName203>$(AspNetCoreRuntimePackageBrandName)-2.0.3</AspNetCoreRuntimePackageName203>
41+
<AspNetCoreRuntimePackageName205>$(AspNetCoreRuntimePackageBrandName)-2.0.5</AspNetCoreRuntimePackageName205>
4142
<AspNetCoreRuntimePackageName Condition=" '$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp' ">$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersion)</AspNetCoreRuntimePackageName>
4243
<HostRidInAspNetCoreRuntimeDebInstallerFileName>$(HostRid)</HostRidInAspNetCoreRuntimeDebInstallerFileName>
4344
<AspNetCoreRuntimeDebInstallerFileName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName>
@@ -127,8 +128,10 @@
127128
<PropertyGroup>
128129
<AspNetCoreRuntimeDebInstallerFileName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName200>
129130
<AspNetCoreRuntimeDebInstallerFileName203>$(AspNetCoreRuntimePackageBrandName)-2.0.3-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName203>
131+
<AspNetCoreRuntimeDebInstallerFileName205>$(AspNetCoreRuntimePackageBrandName)-2.0.5-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName205>
130132
<DownloadedSharedAspNetCoreRuntime200>$(PackagesDirectory)/$(AspNetCoreRuntimeDebInstallerFileName200)</DownloadedSharedAspNetCoreRuntime200>
131133
<DownloadedSharedAspNetCoreRuntime203>$(PackagesDirectory)/$(AspNetCoreRuntimeDebInstallerFileName203)</DownloadedSharedAspNetCoreRuntime203>
134+
<DownloadedSharedAspNetCoreRuntime205>$(PackagesDirectory)/$(AspNetCoreRuntimeDebInstallerFileName205)</DownloadedSharedAspNetCoreRuntime205>
132135
<DownloadedSharedAspNetCoreRuntime>$(PackagesDirectory)/$(AspNetCoreRuntimeDebInstallerFileName)</DownloadedSharedAspNetCoreRuntime>
133136
</PropertyGroup>
134137
<DownloadFile
@@ -137,6 +140,9 @@
137140
<DownloadFile
138141
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeDebInstallerFileName203)$(CoreSetupBlobAccessTokenParam)"
139142
DestinationPath="$(DownloadedSharedAspNetCoreRuntime203)"/>
143+
<DownloadFile
144+
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeDebInstallerFileName205)$(CoreSetupBlobAccessTokenParam)"
145+
DestinationPath="$(DownloadedSharedAspNetCoreRuntime205)"/>
140146
<DownloadFile
141147
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeDebInstallerFileName)$(CoreSetupBlobAccessTokenParam)"
142148
DestinationPath="$(DownloadedSharedAspNetCoreRuntime)"/>

build/package/Installer.RPM.targets

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
<AspNetCoreRuntimePackageName Condition="'$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp'">$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersion)</AspNetCoreRuntimePackageName>
5656
<AspNetCoreRuntimePackageName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0</AspNetCoreRuntimePackageName200>
5757
<AspNetCoreRuntimePackageName203>$(AspNetCoreRuntimePackageBrandName)-2.0.3</AspNetCoreRuntimePackageName203>
58+
<AspNetCoreRuntimePackageName205>$(AspNetCoreRuntimePackageBrandName)-2.0.5</AspNetCoreRuntimePackageName205>
5859
<AspNetCoreRuntimePackageVersion>$(AspNetCoreVersion)-$(AspNetCoreRelease)-$(AspNetCoreRuntimePackageTimestamp)</AspNetCoreRuntimePackageVersion>
5960
<AspNetCoreRuntimePackageVersion Condition="'$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp'">$(AspNetCoreVersion)</AspNetCoreRuntimePackageVersion>
6061
<AspNetCoreRuntimeRpmInstallerFileName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName>
@@ -189,8 +190,10 @@
189190
<PropertyGroup>
190191
<AspNetCoreRuntimeRpmInstallerFileName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName200>
191192
<AspNetCoreRuntimeRpmInstallerFileName203>$(AspNetCoreRuntimePackageBrandName)-2.0.3-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName203>
193+
<AspNetCoreRuntimeRpmInstallerFileName205>$(AspNetCoreRuntimePackageBrandName)-2.0.5-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName205>
192194
<DownloadedSharedAspNetCoreRuntime200>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName200)</DownloadedSharedAspNetCoreRuntime200>
193195
<DownloadedSharedAspNetCoreRuntime203>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName203)</DownloadedSharedAspNetCoreRuntime203>
196+
<DownloadedSharedAspNetCoreRuntime205>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName205)</DownloadedSharedAspNetCoreRuntime205>
194197
<DownloadedSharedAspNetCoreRuntime>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName)</DownloadedSharedAspNetCoreRuntime>
195198
</PropertyGroup>
196199
<DownloadFile
@@ -199,6 +202,9 @@
199202
<DownloadFile
200203
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeRpmInstallerFileName203)$(CoreSetupBlobAccessTokenParam)"
201204
DestinationPath="$(DownloadedSharedAspNetCoreRuntime203)"/>
205+
<DownloadFile
206+
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeRpmInstallerFileName205)$(CoreSetupBlobAccessTokenParam)"
207+
DestinationPath="$(DownloadedSharedAspNetCoreRuntime205)"/>
202208
<DownloadFile
203209
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeRpmInstallerFileName)$(CoreSetupBlobAccessTokenParam)"
204210
DestinationPath="$(DownloadedSharedAspNetCoreRuntime)"/>
@@ -239,6 +245,7 @@
239245
<Exec Command="sudo yum -y install $(DownloadedSharedFrameworkInstallerFile)" />
240246
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime200)" />
241247
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime203)" />
248+
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime205)" />
242249
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime)" />
243250

244251
<Exec Command="sudo yum -y install $(SdkInstallerFile)" />
@@ -255,6 +262,7 @@
255262
<Exec Command="sudo yum remove -y $(SdkRpmPackageName)" />
256263

257264
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName)" />
265+
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName205)" />
258266
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName203)" />
259267
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName200)" />
260268
<Exec Command="sudo yum remove -y $(SharedFxRpmPackageName)" />

0 commit comments

Comments
 (0)