Skip to content

Commit

Permalink
[installer] Add RuntimeSpecificFrameworkSuffix property (#35124)
Browse files Browse the repository at this point in the history
Co-authored-by: Mitchell Hwang <[email protected]>
  • Loading branch information
mdh1418 and mdh1418 authored Apr 27, 2020
1 parent 24bfe6c commit 5bde93a
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/installer/pkg/projects/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,9 @@
</PropertyGroup>
</Target>

<!-- Keep this isolated to desktop mono for now -->
<Target Name="MobileGetBuildRidSpecificPackageProps"
Condition="'$(RuntimeFlavor)' == 'Mono' and '$(TargetsMobile)' != 'true' and '$(TargetsBrowser)' != 'true'"
AfterTargets="GetBuildRidSpecificPackageProps">
<PropertyGroup>
<RidSpecificPackProperties>BaseId=$(MSBuildProjectName)$(RuntimeSpecificFrameworkSuffix).Mono.$(PackageBuildRID);IdPrefix=</RidSpecificPackProperties>
</PropertyGroup>
</Target>
<PropertyGroup Condition="'$(RuntimeFlavor)' == 'Mono' and '$(TargetsMobile)' != 'true' and '$(TargetsBrowser)' != 'true'">
<RuntimeSpecificFrameworkSuffix>.Mono</RuntimeSpecificFrameworkSuffix>
</PropertyGroup>

<!--
For any Dependency items with a VersionProp, set it to the property by that name given by the
Expand Down

0 comments on commit 5bde93a

Please sign in to comment.