* Merge and modernize the binding projects * Remove UWP and watchOS * Add the native assets projects * Rename bootstrapper.ps1 to build.ps1 * Add new device tests * Rework the test skipping feature --------- Co-authored-by: Jerome Laban <jerome.laban@nventive.com>
24 lines
645 B
XML
24 lines
645 B
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
<!-- managed -->
|
|
<FirstParty Include="SkiaSharp*.dll" />
|
|
<FirstParty Include="HarfBuzzSharp*.dll" />
|
|
<!-- native -->
|
|
<FirstParty Include="libSkiaSharp.dll" />
|
|
<FirstParty Include="libHarfBuzzSharp.dll" />
|
|
<!-- ANGLE -->
|
|
<FirstParty Include="libEGL.dll" />
|
|
<FirstParty Include="libGLESv2.dll" />
|
|
<FirstParty Include="zlib1.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- <ThirdParty Include="Newtonsoft.Json.dll" /> -->
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- <Skip Include="System.*.dll" /> -->
|
|
</ItemGroup>
|
|
|
|
</Project>
|