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

Commit 50ffb6b

Browse files
committed
Removing installing the 2.0.0 asp.net runtime store. We don't it anymore either. In master, just the preview one should be enough.
1 parent d613ec5 commit 50ffb6b

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

build/package/Installer.DEB.proj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<Exec Command="sudo dpkg -i $(DownloadedSharedHostInstallerFile)" />
2626
<Exec Command="sudo dpkg -i $(DownloadedHostFxrInstallerFile)" />
2727
<Exec Command="sudo dpkg -i $(DownloadedSharedFrameworkInstallerFile)" />
28-
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime200)" />
2928
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime)" />
3029

3130
<!-- Create layout: Binaries -->
@@ -89,7 +88,6 @@
8988
<!-- Remove Shared Framework and Debian Packages -->
9089
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
9190
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName)" />
92-
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName200)" />
9391
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
9492
<Exec Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
9593

@@ -109,7 +107,6 @@
109107
<Exec Command="sudo dpkg -i $(DownloadedSharedHostInstallerFile)" />
110108
<Exec Command="sudo dpkg -i $(DownloadedHostFxrInstallerFile)" />
111109
<Exec Command="sudo dpkg -i $(DownloadedSharedFrameworkInstallerFile)" />
112-
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime200)" />
113110
<Exec Command="sudo dpkg -i $(DownloadedSharedAspNetCoreRuntime)" />
114111

115112
<Exec Command="sudo dpkg -i $(SdkInstallerFile)" />
@@ -125,7 +122,6 @@
125122
<!-- Clean up Packages -->
126123
<Exec Command="sudo dpkg -r $(SdkDebianPackageName)" />
127124
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName)" />
128-
<Exec Command="sudo dpkg -r $(AspNetCoreRuntimePackageName200)" />
129125
<Exec Command="sudo dpkg -r $(SharedFxDebianPackageName)" />
130126
<Exec Command="sudo dpkg -r $(HostFxrDebianPackageName)" />
131127

build/package/Installer.DEB.targets

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
<HostFxrDebianPackageName>$(HostFxrDebianPackageName.ToLower())</HostFxrDebianPackageName>
3636
<HostDebianPackageName>dotnet-host</HostDebianPackageName>
3737
<AspNetCoreRuntimePackageName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)</AspNetCoreRuntimePackageName>
38-
<AspNetCoreRuntimePackageName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0</AspNetCoreRuntimePackageName200>
3938
<AspNetCoreRuntimePackageName Condition=" '$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp' ">$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersion)</AspNetCoreRuntimePackageName>
4039
<HostRidInAspNetCoreRuntimeDebInstallerFileName>$(HostRid)</HostRidInAspNetCoreRuntimeDebInstallerFileName>
4140
<AspNetCoreRuntimeDebInstallerFileName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName>
@@ -126,13 +125,8 @@
126125
<Target Name="DownloadAspNetCoreRuntimeDebInstaller"
127126
DependsOnTargets="SetupDebProps">
128127
<PropertyGroup>
129-
<AspNetCoreRuntimeDebInstallerFileName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0-$(HostRidInAspNetCoreRuntimeDebInstallerFileName).deb</AspNetCoreRuntimeDebInstallerFileName200>
130-
<DownloadedSharedAspNetCoreRuntime200>$(PackagesDirectory)/AspNetCoreRuntimeDebInstallerFileName200</DownloadedSharedAspNetCoreRuntime200>
131128
<DownloadedSharedAspNetCoreRuntime>$(PackagesDirectory)/$(AspNetCoreRuntimeDebInstallerFileName)</DownloadedSharedAspNetCoreRuntime>
132129
</PropertyGroup>
133-
<DownloadFile
134-
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeDebInstallerFileName200)$(CoreSetupBlobAccessTokenParam)"
135-
DestinationPath="$(DownloadedSharedAspNetCoreRuntime200)"/>
136130
<DownloadFile
137131
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeDebInstallerFileName)$(CoreSetupBlobAccessTokenParam)"
138132
DestinationPath="$(DownloadedSharedAspNetCoreRuntime)"/>

build/package/Installer.RPM.targets

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@
178178
<HostRidInAspNetCoreRuntimeRpmInstallerFileName>$(HostRid)</HostRidInAspNetCoreRuntimeRpmInstallerFileName>
179179
<AspNetCoreRuntimePackageName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)</AspNetCoreRuntimePackageName>
180180
<AspNetCoreRuntimePackageName Condition="'$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp'">$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersion)</AspNetCoreRuntimePackageName>
181-
<AspNetCoreRuntimePackageName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0</AspNetCoreRuntimePackageName200>
182181
<AspNetCoreRuntimePackageVersion>$(AspNetCoreVersion)-$(AspNetCoreRelease)-$(AspNetCoreRuntimePackageTimestamp)</AspNetCoreRuntimePackageVersion>
183182
<AspNetCoreRuntimePackageVersion Condition="'$(AspNetCoreRuntimePackageFlavor)' == 'notimestamp'">$(AspNetCoreVersion)</AspNetCoreRuntimePackageVersion>
184183
<AspNetCoreRuntimeRpmInstallerFileName>$(AspNetCoreRuntimePackageBrandName)-$(AspNetCoreVersionAndRelease)-$(AspNetCoreRuntimePackageTimestamp)-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName>
@@ -195,13 +194,8 @@
195194
<Target Name="DownloadAspNetCoreRuntimeRpmInstaller"
196195
DependsOnTargets="SetupRpmProps">
197196
<PropertyGroup>
198-
<AspNetCoreRuntimeRpmInstallerFileName200>$(AspNetCoreRuntimePackageBrandName)-2.0.0-$(HostRidInAspNetCoreRuntimeRpmInstallerFileName).rpm</AspNetCoreRuntimeRpmInstallerFileName200>
199-
<DownloadedSharedAspNetCoreRuntime200>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName200)</DownloadedSharedAspNetCoreRuntime200>
200197
<DownloadedSharedAspNetCoreRuntime>$(PackagesDirectory)/$(AspNetCoreRuntimeRpmInstallerFileName)</DownloadedSharedAspNetCoreRuntime>
201198
</PropertyGroup>
202-
<DownloadFile
203-
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeRpmInstallerFileName200)$(CoreSetupBlobAccessTokenParam)"
204-
DestinationPath="$(DownloadedSharedAspNetCoreRuntime200)"/>
205199
<DownloadFile
206200
Uri="$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeRpmInstallerFileName)$(CoreSetupBlobAccessTokenParam)"
207201
DestinationPath="$(DownloadedSharedAspNetCoreRuntime)"/>
@@ -240,7 +234,6 @@
240234
<Exec Command="sudo yum -y install $(DownloadedSharedHostInstallerFile)" />
241235
<Exec Command="sudo yum -y install $(DownloadedHostFxrInstallerFile)" />
242236
<Exec Command="sudo yum -y install $(DownloadedSharedFrameworkInstallerFile)" />
243-
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime200)" />
244237
<Exec Command="sudo yum -y install $(DownloadedSharedAspNetCoreRuntime)" />
245238

246239
<Exec Command="sudo yum -y install $(SdkInstallerFile)" />
@@ -257,7 +250,6 @@
257250
<Exec Command="sudo yum remove -y $(SdkRpmPackageName)" />
258251

259252
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName)" />
260-
<Exec Command="sudo yum remove -y $(AspNetCoreRuntimePackageName200)" />
261253
<Exec Command="sudo yum remove -y $(SharedFxRpmPackageName)" />
262254
<Exec Command="sudo yum remove -y $(HostFxrRpmPackageName)" />
263255
<Exec Command="sudo yum remove -y $(HostRpmPackageName)" />

0 commit comments

Comments
 (0)