2017-02-16 03:37:51 +00:00
|
|
|
<Project>
|
2017-03-24 19:22:34 +00:00
|
|
|
<PropertyGroup>
|
2017-06-02 15:58:06 +00:00
|
|
|
<CoreSetupRid>$(HostRid)</CoreSetupRid>
|
|
|
|
<CoreSetupRid Condition=" '$(HostOSName)' == 'win' or '$(HostOSName)' == 'osx' ">$(HostMonikerRid)</CoreSetupRid>
|
2017-04-10 23:18:30 +00:00
|
|
|
|
2017-05-24 23:12:53 +00:00
|
|
|
<!-- only the runtime OSX .pkgs have a `-internal` suffix -->
|
2017-06-08 07:12:42 +00:00
|
|
|
<InstallerStartSuffix Condition="'$(HostOSName)' == 'osx'">-internal</InstallerStartSuffix>
|
2017-05-24 23:12:53 +00:00
|
|
|
|
2017-03-24 19:22:34 +00:00
|
|
|
<!-- Downloaded Installers + Archives -->
|
2017-05-24 23:12:53 +00:00
|
|
|
<DownloadedSharedHostInstallerFileName Condition=" '$(InstallerExtension)' != '' ">dotnet-host$(InstallerStartSuffix)-$(SharedHostVersion)-$(CoreSetupRid)$(InstallerExtension)</DownloadedSharedHostInstallerFileName>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadedSharedHostInstallerFile Condition=" '$(InstallerExtension)' != '' ">$(PackagesDirectory)/$(DownloadedSharedHostInstallerFileName)</DownloadedSharedHostInstallerFile>
|
|
|
|
|
2017-05-24 23:12:53 +00:00
|
|
|
<DownloadedHostFxrInstallerFileName Condition=" '$(InstallerExtension)' != '' ">dotnet-hostfxr$(InstallerStartSuffix)-$(HostFxrVersion)-$(CoreSetupRid)$(InstallerExtension)</DownloadedHostFxrInstallerFileName>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadedHostFxrInstallerFile Condition=" '$(InstallerExtension)' != '' ">$(PackagesDirectory)/$(DownloadedHostFxrInstallerFileName)</DownloadedHostFxrInstallerFile>
|
|
|
|
|
2017-05-24 23:12:53 +00:00
|
|
|
<DownloadedSharedFrameworkInstallerFileName Condition=" '$(InstallerExtension)' != '' ">dotnet-runtime$(InstallerStartSuffix)-$(SharedFrameworkVersion)-$(CoreSetupRid)$(InstallerExtension)</DownloadedSharedFrameworkInstallerFileName>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadedSharedFrameworkInstallerFile Condition=" '$(InstallerExtension)' != '' ">$(PackagesDirectory)/$(DownloadedSharedFrameworkInstallerFileName)</DownloadedSharedFrameworkInstallerFile>
|
|
|
|
|
2017-03-24 20:07:54 +00:00
|
|
|
<!-- Use the portable linux-x64 Rid when downloading the shared framework compressed file.
|
|
|
|
NOTE: There isn't a 'linux-x64' version of the installers or the additional shared framweork. -->
|
2017-05-08 22:39:14 +00:00
|
|
|
<SharedFrameworkRid>$(CoreSetupRid)</SharedFrameworkRid>
|
2017-03-24 20:07:54 +00:00
|
|
|
<SharedFrameworkRid Condition=" '$(UsePortableLinuxSharedFramework)' == 'true' ">linux-x64</SharedFrameworkRid>
|
2017-05-24 23:12:53 +00:00
|
|
|
<CombinedFrameworkHostCompressedFileName>dotnet-runtime-$(SharedFrameworkVersion)-$(SharedFrameworkRid)$(ArchiveExtension)</CombinedFrameworkHostCompressedFileName>
|
2017-03-24 19:22:34 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<CoreSetupBlobRootUrl Condition="'$(CoreSetupBlobRootUrl)' == ''">https://dotnetcli.azureedge.net/dotnet/</CoreSetupBlobRootUrl>
|
2017-05-17 01:54:02 +00:00
|
|
|
<CoreSetupRootUrl>$(CoreSetupBlobRootUrl)Runtime/</CoreSetupRootUrl>
|
2017-03-24 19:22:34 +00:00
|
|
|
<CoreSetupDownloadDirectory>$(IntermediateDirectory)/coreSetupDownload/$(SharedFrameworkVersion)</CoreSetupDownloadDirectory>
|
2017-04-28 05:20:43 +00:00
|
|
|
<CombinedSharedHostAndFrameworkArchive>$(CoreSetupDownloadDirectory)/combinedSharedHostAndFrameworkArchive$(ArchiveExtension)</CombinedSharedHostAndFrameworkArchive>
|
2017-04-27 23:09:51 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-05-02 22:18:10 +00:00
|
|
|
<AspNetCoreRuntimeInstallerBlobRootUrl>$(CoreSetupBlobRootUrl)aspnetcore/store/$(AspNetCoreRuntimeVersion)</AspNetCoreRuntimeInstallerBlobRootUrl>
|
2017-04-27 23:09:51 +00:00
|
|
|
|
2017-04-28 21:23:25 +00:00
|
|
|
<!-- Examples: Build.RS.linux.zip Build.RS.winx86.zip AspNetCorePackageStoreLibx64.wixlib -->
|
2017-06-08 07:12:42 +00:00
|
|
|
<AspNetCoreRuntimeInstallerArchiveFileNameOSToken Condition=" '$(HostOSName)' == 'win' ">$(HostOSName)$(Architecture)</AspNetCoreRuntimeInstallerArchiveFileNameOSToken>
|
|
|
|
<AspNetCoreRuntimeInstallerArchiveFileNameOSToken Condition=" '$(HostOSName)' == 'osx' ">$(HostOSName)</AspNetCoreRuntimeInstallerArchiveFileNameOSToken>
|
2017-04-28 21:23:25 +00:00
|
|
|
<AspNetCoreRuntimeInstallerArchiveFileNameOSToken Condition=" '$(AspNetCoreRuntimeInstallerArchiveFileNameOSToken)' == '' ">linux</AspNetCoreRuntimeInstallerArchiveFileNameOSToken>
|
2017-04-27 23:09:51 +00:00
|
|
|
|
2017-06-02 20:57:08 +00:00
|
|
|
<AspNetCoreRuntimeStoreSuffix Condition="'$(AspNetCoreRuntimePackageFlavor)' != 'notimestamp'">-$(AspNetCoreCoherenceTimestamp)</AspNetCoreRuntimeStoreSuffix>
|
|
|
|
<AspNetCoreRuntimeInstallerArchiveSuffix Condition="'$(AspNetCoreRuntimeStoreSuffix)' != ''">-$(AspNetCoherenceLabel)$(AspNetCoreRuntimeStoreSuffix)</AspNetCoreRuntimeInstallerArchiveSuffix>
|
2017-05-20 06:14:59 +00:00
|
|
|
<AspNetCoreRuntimeInstallerArchiveFileName>Build.RS.$(AspNetCoreRuntimeInstallerArchiveFileNameOSToken)$(AspNetCoreRuntimeInstallerArchiveSuffix)$(ArchiveExtension)</AspNetCoreRuntimeInstallerArchiveFileName>
|
2017-04-28 16:57:29 +00:00
|
|
|
<AspNetCoreRuntimeInstallerArchiveFile>$(PackagesDirectory)/$(AspNetCoreRuntimeInstallerArchiveFileName)</AspNetCoreRuntimeInstallerArchiveFile>
|
2017-04-28 21:23:25 +00:00
|
|
|
|
2017-06-08 07:12:42 +00:00
|
|
|
<AspNetCoreRuntimeInstallerWixLibFileName Condition=" '$(HostOSName)' == 'win' ">AspNetCorePackageStoreLib$(Architecture)$(AspNetCoreRuntimeStoreSuffix).wixlib</AspNetCoreRuntimeInstallerWixLibFileName>
|
2017-04-28 16:57:29 +00:00
|
|
|
<AspNetCoreRuntimeInstallerWixLibFile Condition=" '$(AspNetCoreRuntimeInstallerWixLibFileName)' != '' ">$(PackagesDirectory)/$(AspNetCoreRuntimeInstallerWixLibFileName)</AspNetCoreRuntimeInstallerWixLibFile>
|
2017-03-24 19:22:34 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<_DownloadAndExtractItem Include="CombinedSharedHostAndFrameworkArchive"
|
|
|
|
Condition="!Exists('$(CombinedSharedHostAndFrameworkArchive)')">
|
2017-05-17 01:54:02 +00:00
|
|
|
<Url>$(CoreSetupRootUrl)$(SharedFrameworkVersion)/$(CombinedFrameworkHostCompressedFileName)</Url>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadFileName>$(CombinedSharedHostAndFrameworkArchive)</DownloadFileName>
|
|
|
|
<ExtractDestination>$(SharedFrameworkPublishDirectory)</ExtractDestination>
|
|
|
|
</_DownloadAndExtractItem>
|
|
|
|
|
|
|
|
<_DownloadAndExtractItem Include="DownloadedSharedFrameworkInstallerFile"
|
|
|
|
Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(DownloadedSharedFrameworkInstallerFile)') And '$(InstallerExtension)' != ''">
|
2017-05-17 01:54:02 +00:00
|
|
|
<Url>$(CoreSetupRootUrl)$(SharedFrameworkVersion)/$(DownloadedSharedFrameworkInstallerFileName)</Url>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadFileName>$(DownloadedSharedFrameworkInstallerFile)</DownloadFileName>
|
|
|
|
<ExtractDestination></ExtractDestination>
|
|
|
|
</_DownloadAndExtractItem>
|
|
|
|
|
|
|
|
<_DownloadAndExtractItem Include="DownloadedSharedHostInstallerFile"
|
|
|
|
Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(DownloadedSharedHostInstallerFile)') And '$(InstallerExtension)' != ''">
|
2017-05-17 01:54:02 +00:00
|
|
|
<Url>$(CoreSetupRootUrl)$(SharedHostVersion)/$(DownloadedSharedHostInstallerFileName)</Url>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadFileName>$(DownloadedSharedHostInstallerFile)</DownloadFileName>
|
2017-04-28 16:57:29 +00:00
|
|
|
<ExtractDestination></ExtractDestination>
|
2017-03-24 19:22:34 +00:00
|
|
|
</_DownloadAndExtractItem>
|
|
|
|
|
|
|
|
<_DownloadAndExtractItem Include="DownloadedHostFxrInstallerFile"
|
|
|
|
Condition="'$(SkipBuildingInstallers)' != 'true' And !Exists('$(DownloadedHostFxrInstallerFile)') And '$(InstallerExtension)' != ''">
|
2017-05-17 01:54:02 +00:00
|
|
|
<Url>$(CoreSetupRootUrl)$(HostFxrVersion)/$(DownloadedHostFxrInstallerFileName)</Url>
|
2017-03-24 19:22:34 +00:00
|
|
|
<DownloadFileName>$(DownloadedHostFxrInstallerFile)</DownloadFileName>
|
2017-04-28 16:57:29 +00:00
|
|
|
<ExtractDestination></ExtractDestination>
|
2017-03-24 19:22:34 +00:00
|
|
|
</_DownloadAndExtractItem>
|
2017-04-27 21:46:40 +00:00
|
|
|
|
2017-04-28 16:57:29 +00:00
|
|
|
<_DownloadAndExtractItem Include="AspNetCoreRuntimeInstallerWixLibFile"
|
|
|
|
Condition=" '$(AspNetCoreRuntimeInstallerWixLibFile)' != '' And !Exists('$(AspNetCoreRuntimeInstallerWixLibFile)')">
|
2017-05-02 22:18:10 +00:00
|
|
|
<Url>$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeInstallerWixLibFileName)</Url>
|
2017-04-28 16:57:29 +00:00
|
|
|
<DownloadFileName>$(AspNetCoreRuntimeInstallerWixLibFile)</DownloadFileName>
|
2017-04-28 01:04:19 +00:00
|
|
|
<ExtractDestination></ExtractDestination>
|
|
|
|
</_DownloadAndExtractItem>
|
|
|
|
|
2017-04-28 16:57:29 +00:00
|
|
|
<_DownloadAndExtractItem Include="AspNetCoreRuntimeInstallerArchiveFile"
|
|
|
|
Condition="!Exists('$(AspNetCoreRuntimeInstallerArchiveFile)')">
|
2017-05-02 22:18:10 +00:00
|
|
|
<Url>$(AspNetCoreRuntimeInstallerBlobRootUrl)/$(AspNetCoreRuntimeInstallerArchiveFileName)</Url>
|
2017-04-28 16:57:29 +00:00
|
|
|
<DownloadFileName>$(AspNetCoreRuntimeInstallerArchiveFile)</DownloadFileName>
|
2017-04-28 01:04:19 +00:00
|
|
|
<ExtractDestination>$(AspNetRuntimePackageStorePublishDirectory)</ExtractDestination>
|
|
|
|
</_DownloadAndExtractItem>
|
2017-04-27 21:46:40 +00:00
|
|
|
|
2017-03-24 19:22:34 +00:00
|
|
|
</ItemGroup>
|
2017-02-16 03:37:51 +00:00
|
|
|
</Project>
|