-
Notifications
You must be signed in to change notification settings - Fork 546
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #598 from WonyoungChoi/fix_tizen_targets
Fix target files for Tizen to use TizenTPKFiles
- Loading branch information
Showing
2 changed files
with
14 additions
and
16 deletions.
There are no files selected for viewing
15 changes: 7 additions & 8 deletions
15
binding/HarfBuzzSharp.Tizen/nuget/build/tizen40/HarfBuzzSharp.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- HACK: temporary until the Tizen/.NET Core tooling can understand the tizen-x86 RID as opposed to linux-x86 --> | ||
<ItemGroup> | ||
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libHarfBuzzSharp.so" | ||
Condition="Exists('$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libHarfBuzzSharp.so')"> | ||
<Link>tpkroot\bin\runtimes\linux-x86\native\libHarfBuzzSharp.so</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<!-- HACK: temporary until the Tizen/.NET Core tooling can understand the tizen-x86 RID as opposed to linux-x86 --> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)' == ''"> | ||
<TizenTpkFiles Include="$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libHarfBuzzSharp.so"> | ||
<TizenTpkSubDir>bin\runtimes\linux-x86\native\</TizenTpkSubDir> | ||
<TizenTpkFileName>libHarfBuzzSharp.so</TizenTpkFileName> | ||
</TizenTpkFiles> | ||
</ItemGroup> | ||
|
||
</Project> |
15 changes: 7 additions & 8 deletions
15
binding/SkiaSharp.Tizen/nuget/build/tizen40/SkiaSharp.targets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- HACK: temporary until the Tizen/.NET Core tooling can understand the tizen-x86 RID as opposed to linux-x86 --> | ||
<ItemGroup> | ||
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libSkiaSharp.so" | ||
Condition="Exists('$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libSkiaSharp.so')"> | ||
<Link>tpkroot\bin\runtimes\linux-x86\native\libSkiaSharp.so</Link> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<!-- HACK: temporary until the Tizen/.NET Core tooling can understand the tizen-x86 RID as opposed to linux-x86 --> | ||
<ItemGroup Condition="'$(RuntimeIdentifier)' == ''"> | ||
<TizenTpkFiles Include="$(MSBuildThisFileDirectory)..\..\runtimes\tizen-x86\native\libSkiaSharp.so"> | ||
<TizenTpkSubDir>bin\runtimes\linux-x86\native\</TizenTpkSubDir> | ||
<TizenTpkFileName>libSkiaSharp.so</TizenTpkFileName> | ||
</TizenTpkFiles> | ||
</ItemGroup> | ||
|
||
</Project> |