Skip to content

Commit

Permalink
Workaround duplicate package icon in packages (#39736)
Browse files Browse the repository at this point in the history
Real fix is dotnet/arcade#5818 but that will
take a while to make it into the preview8 branches (if at all).
  • Loading branch information
ericstj authored Jul 22, 2020
1 parent 44446b1 commit 498c798
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion eng/packaging.targets
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<Project>
<ItemGroup>
<!-- workaround duplicate icon. If PackageIconFile is set, don't include PackageIconFullPath in package
can be removed when we have an arcade build with https://github.com/dotnet/arcade/pull/5818 -->
<None Condition="'$(PackageIconFile)' != ''" Update="$(PackageIconFullPath)" Pack="false" />
</ItemGroup>
<!-- There are some packages where we require only one ref for a specific framework to be present. In order to avoid problems with this package when targetting
dektop with RAR we will make sure there are no exclude=compile references in the package.
For more info, please check issues:
Expand Down Expand Up @@ -26,4 +31,4 @@
'$(_excludeCompile)' == 'true' and
'%(Dependency.Identity)' != '_._'" />
</Target>
</Project>
</Project>

0 comments on commit 498c798

Please sign in to comment.