Skip to content

Commit

Permalink
tweak derivedpackagetargetosgroup definition
Browse files Browse the repository at this point in the history
  • Loading branch information
chcosta committed Feb 2, 2017
1 parent 8ce3fab commit 458a972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/.nuget/packaging.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@

<!-- derive an OS Group based on the OS Family -->
<PropertyGroup Condition="'$(_runtimeOSFamily)' != ''">
<_derivedPackageTargetOSGroup Condition="'$(__BuildOS)' != ''">$(__BuildOS)</_derivedPackageTargetOSGroup>
<_derivedPackageTargetOSGroup Condition="'$(_derivedPackageTargetOSGroup)' == '' and '$(_runtimeOSFamily)' == 'osx'">OSX</_derivedPackageTargetOSGroup>
<_derivedPackageTargetOSGroup Condition="'$(_derivedPackageTargetOSGroup)' == '' and '$(_runtimeOSFamily)' == 'win'">Windows_NT</_derivedPackageTargetOSGroup>
<_derivedPackageTargetOSGroup Condition="'$(_derivedPackageTargetOSGroup)' == '' and '$(__BuildOS)' != ''">$(__BuildOS)</_derivedPackageTargetOSGroup>
<_derivedPackageTargetOSGroup Condition="'$(_derivedPackageTargetOSGroup)' == ''">Linux</_derivedPackageTargetOSGroup>

<_isSupportedOSGroup Condition="!$(SupportedPackageOSGroups.Contains(';$(_derivedPackageTargetOSGroup);'))">false</_isSupportedOSGroup>
Expand Down

0 comments on commit 458a972

Please sign in to comment.