You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.2 KiB
24 lines
1.2 KiB
2 years ago
|
From 892222071f73062f969f4f6ed1df8f759b9327b7 Mon Sep 17 00:00:00 2001
|
||
|
From: Tom Deseyn <tom.deseyn@gmail.com>
|
||
|
Date: Wed, 3 Nov 2021 15:12:59 +0100
|
||
|
Subject: [PATCH] GetRuntimeInformation.targets: determine
|
||
|
PortableProductMonikerRid based on HostOSName and Architecture.
|
||
|
|
||
|
---
|
||
|
src/redist/targets/GetRuntimeInformation.targets | 2 ++
|
||
|
1 file changed, 2 insertions(+)
|
||
|
|
||
|
diff --git a/src/redist/targets/GetRuntimeInformation.targets b/src/redist/targets/GetRuntimeInformation.targets
|
||
|
index 5133c3a3841..01f704c7d8e 100644
|
||
|
--- a/src/redist/targets/GetRuntimeInformation.targets
|
||
|
+++ b/src/redist/targets/GetRuntimeInformation.targets
|
||
|
@@ -28,6 +28,8 @@
|
||
|
'$(Rid)' == 'linux-musl-x64' ">$(Rid)</ProductMonikerRid>
|
||
|
<ProductMonikerRid Condition=" '$(ProductMonikerRid)' == '' ">$(OSName)-$(Architecture)</ProductMonikerRid>
|
||
|
|
||
|
+ <PortableProductMonikerRid Condition=" '$(PortableProductMonikerRid)' == '' ">$(HostOSName)-$(Architecture)</PortableProductMonikerRid>
|
||
|
+
|
||
|
<ArtifactNameSdk>dotnet-sdk-internal$(PgoTerm)</ArtifactNameSdk>
|
||
|
<ArtifactNameCombinedHostHostFxrFrameworkSdk>dotnet-sdk$(PgoTerm)</ArtifactNameCombinedHostHostFxrFrameworkSdk>
|
||
|
|