diff --git a/build/BackwardsCompatibilityRuntimes.props b/build/BackwardsCompatibilityRuntimes.props
index 5cadcb052..6805d4377 100644
--- a/build/BackwardsCompatibilityRuntimes.props
+++ b/build/BackwardsCompatibilityRuntimes.props
@@ -20,7 +20,7 @@
$(BackwardsCompatibility110CoreSetupBlobRootUrlWithChannel)/Binaries/$(BackwardsCompatibility110SharedFrameworkVersion)
$(BackwardsCompatibility110CoreSetupBlobRootUrlWithChannel)/Installers
$(IntermediateDirectory)/coreSetupDownload/$(BackwardsCompatibility110SharedFrameworkVersion)
- $(BackwardsCompatibility110CoreSetupDownloadDirectory)/combinedSharedHostAndFrameworkArchive
+ $(BackwardsCompatibility110CoreSetupDownloadDirectory)/combinedSharedHostAndFrameworkArchive$(ArchiveExtension)
diff --git a/build/BundledRuntimes.props b/build/BundledRuntimes.props
index 1f61ff3fc..c0d959c9f 100644
--- a/build/BundledRuntimes.props
+++ b/build/BundledRuntimes.props
@@ -13,13 +13,6 @@
dotnet-sharedframework-$(ProductMonikerRid).$(SharedFrameworkVersion)$(InstallerPortableSuffix)$(InstallerExtension)
$(PackagesDirectory)/$(DownloadedSharedFrameworkInstallerFileName)
-
- Build.RS.$(OSName)-$(ASPNETCoreRuntimeFileNameVersionToken).zip
- AspNetCorePackageStoreLib$(Architecture).wixlib
-
- $(PackagesDirectory)/$(ASPNETCoreRuntimeInstallerArchiveFileName)
- $(PackagesDirectory)/$(ASPNETCoreRuntimeInstallerWixLibFileName)
-
$(ProductMonikerRid)
@@ -34,18 +27,18 @@
$(CoreSetupBlobRootUrlWithChannel)/Binaries/$(SharedFrameworkVersion)
$(CoreSetupBlobRootUrlWithChannel)/Installers
$(IntermediateDirectory)/coreSetupDownload/$(SharedFrameworkVersion)
- $(CoreSetupDownloadDirectory)/combinedSharedHostAndFrameworkArchive
+ $(CoreSetupDownloadDirectory)/combinedSharedHostAndFrameworkArchive$(ArchiveExtension)
$(CoreSetupBlobRootUrl)aspnetcore/store
- $(IntermediateDirectory)/ASPNETCoreRuntimeDownload
- Build.RS.$(OSName)-$(ASPNETCoreRuntimeFileNameVersionToken).zip
- AspNetCorePackageStoreLib$(Architecture).wixlib
+ Build.RS.$(OSName)-$(ASPNETCoreRuntimeFileNameVersionToken).zip
+ AspNetCorePackageStoreLib$(Architecture).wixlib
- $(ASPNETCoreRuntimeDownloadDirectory)/$(ASPNETCoreRuntimeInstallerFileName)
+ $(PackagesDirectory)/$(ASPNETCoreRuntimeInstallerArchiveFileName)
+ $(PackagesDirectory)/$(ASPNETCoreRuntimeInstallerWixLibFileName)
@@ -67,24 +60,16 @@
Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(DownloadedSharedHostInstallerFile)') And '$(InstallerExtension)' != ''">
$(CoreSetupInstallerBlobRootUrl)/$(SharedHostVersion)/$(DownloadedSharedHostInstallerFileName)
$(DownloadedSharedHostInstallerFile)
-
+
<_DownloadAndExtractItem Include="DownloadedHostFxrInstallerFile"
Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(DownloadedHostFxrInstallerFile)') And '$(InstallerExtension)' != ''">
$(CoreSetupInstallerBlobRootUrl)/$(HostFxrVersion)/$(DownloadedHostFxrInstallerFileName)
$(DownloadedHostFxrInstallerFile)
-
+
-<<<<<<< HEAD
- <_DownloadAndExtractItem Include="ASPNETCoreRuntimeInstallerFile"
- Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(ASPNETCoreRuntimeInstallerFile)') And '$(InstallerExtension)' != ''">
- $(ASPNETCoreRuntimeInstallerBlobRootUrl)/$(ASPNETCoreRuntimeVersion)/$(ASPNETCoreRuntimeInstallerFileName)
- $(ASPNETCoreRuntimeInstallerFile)
- $(IntermediateDirectory)/ASPNETCoreRuntimeStore
-
-=======
<_DownloadAndExtractItem Include="ASPNETCoreRuntimeInstallerWixLibFile"
Condition=" '$(ASPNETCoreRuntimeInstallerWixLibFile)' != '' And !Exists('$(ASPNETCoreRuntimeInstallerWixLibFile)')">
$(ASPNETCoreRuntimeInstallerBlobRootUrl)/$(ASPNETCoreRuntimeVersion)/$(ASPNETCoreRuntimeInstallerWixLibFileName)
@@ -98,7 +83,6 @@
$(ASPNETCoreRuntimeInstallerArchiveFile)
$(AspNetRuntimePackageStorePublishDirectory)
->>>>>>> Updating the URL for the aspnet runtime store artifacts. Fixing a typo on ExtractDestination and condition extraction on file extension rather than OS.
diff --git a/run-build.ps1 b/run-build.ps1
index 0c3ed5443..e97c49c1e 100644
--- a/run-build.ps1
+++ b/run-build.ps1
@@ -124,6 +124,6 @@ if ($NoBuild)
else
{
dotnet msbuild build.proj /p:Architecture=$Architecture /p:GeneratePropsFile=true /t:WriteDynamicPropsToStaticPropsFiles
- dotnet msbuild build.proj /m /v:diag /fl /flp:v=diag /p:Architecture=$Architecture $ExtraParameters
+ dotnet msbuild build.proj /m /v:normal /fl /flp:v=diag /p:Architecture=$Architecture $ExtraParameters
if($LASTEXITCODE -ne 0) { throw "Failed to build" }
}
diff --git a/run-build.sh b/run-build.sh
index 16cece2d1..77034b6a6 100755
--- a/run-build.sh
+++ b/run-build.sh
@@ -203,7 +203,7 @@ echo "${args[@]}"
if [ $BUILD -eq 1 ]; then
dotnet msbuild build.proj /p:Architecture=$ARCHITECTURE $CUSTOM_BUILD_ARGS /p:GeneratePropsFile=true /t:WriteDynamicPropsToStaticPropsFiles
- dotnet msbuild build.proj /m /v:diag /fl /flp:v=diag /p:Architecture=$ARCHITECTURE $CUSTOM_BUILD_ARGS "${args[@]}"
+ dotnet msbuild build.proj /m /v:normal /fl /flp:v=diag /p:Architecture=$ARCHITECTURE $CUSTOM_BUILD_ARGS "${args[@]}"
else
echo "Not building due to --nobuild"
echo "Command that would be run is: 'dotnet msbuild build.proj /m /p:Architecture=$ARCHITECTURE $CUSTOM_BUILD_ARGS ${args[@]}'"
diff --git a/src/redist/redist.csproj b/src/redist/redist.csproj
index b8bd12306..540a64ac4 100644
--- a/src/redist/redist.csproj
+++ b/src/redist/redist.csproj
@@ -30,6 +30,17 @@
+
+
+
+
+
+
+
+
+