We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bafcb1c + 7df0ad8 commit 6125e3eCopy full SHA for 6125e3e
eng/wpf-debug.targets
@@ -12,7 +12,8 @@
12
13
<PropertyGroup>
14
<WpfConfig Condition="'$(WpfConfig)'==''">Debug</WpfConfig>
15
- <RuntimeIdentifier>win-$(PlatformTarget)</RuntimeIdentifier>
+ <RuntimeIdentifier Condition="'$(PlatformTarget)' == ''">win-x64</RuntimeIdentifier>
16
+ <RuntimeIdentifier Condition="'$(PlatformTarget)' != ''">win-$(PlatformTarget)</RuntimeIdentifier>
17
18
<WpfArtifactsPackagesCommonPath>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)\..\'))\artifacts\packaging</WpfArtifactsPackagesCommonPath>
19
<WpfPlatformTargetArtifactsDirectory Condition="'$(PlatformTarget)'=='x64'">x64\</WpfPlatformTargetArtifactsDirectory>
0 commit comments