Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #6615 from dagood/fix-msbuild-14-2.2
Browse files Browse the repository at this point in the history
[release/2.2] Remove item metadata attributes for MSBuild 14
  • Loading branch information
mmitche authored Jun 3, 2019
2 parents 086e6ed + 1f090d6 commit 7dac9b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pkg/packaging/deb/package.targets
Original file line number Diff line number Diff line change
Expand Up @@ -344,14 +344,14 @@
In every runtime deps Deb package, include alternatives known to work with .NET Core.
Specifying these as "or" dependencies lets us create one package that works on many distros.
-->
<SharedFrameworkTokenValue
Include="%SSL_DEPENDENCY_LIST%"
ReplacementString="libssl1.0.0 | libssl1.0.2 | libssl1.1" />
<SharedFrameworkTokenValue Include="%SSL_DEPENDENCY_LIST%">
<ReplacementString>libssl1.0.0 | libssl1.0.2 | libssl1.1</ReplacementString>
</SharedFrameworkTokenValue>

<KnownLibIcuVersion Include="63;60;57;55;52" />
<SharedFrameworkTokenValue
Include="%LIBICU_DEPENDENCY_LIST%"
ReplacementString="libicu | @(KnownLibIcuVersion -> 'libicu%(Identity)', ' | ')" />
<SharedFrameworkTokenValue Include="%LIBICU_DEPENDENCY_LIST%">
<ReplacementString>libicu | @(KnownLibIcuVersion -> 'libicu%(Identity)', ' | ')</ReplacementString>
</SharedFrameworkTokenValue>
</ItemGroup>

<ReplaceFileContents InputFile="$(ConfigJsonFile)"
Expand Down

0 comments on commit 7dac9b1

Please sign in to comment.