Summary: The C# wrapper project has been changed to a NETStandard (1.1) PCL allowing it to be consumed by any project targeting .NET4.5 or greater including .NETCore and UWP projects... The C# wrapper uses P/Invoke to call into the Native Yoga DLL... The "Yoga" C++ project has been updated to support ARM builds... Added the ability to generate nuget packages for the C# wrapper that supports copying the native DLLs to the target output directory. Closes: https://github.com/facebook/yoga/pull/283 Reviewed By: splhack, emilsjolander Differential Revision: D4381455 Pulled By: JoelMarcey fbshipit-source-id: e6dc4190caa824ac63d5d5ee2eb4c7914efbb00f
45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Package
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
IgnorableNamespaces="uap mp">
|
|
|
|
<Identity Name="6797a00b-cf19-41b1-bd06-467391a2a6e3"
|
|
Publisher="CN=anforste"
|
|
Version="1.0.0.0" />
|
|
|
|
<mp:PhoneIdentity PhoneProductId="6797a00b-cf19-41b1-bd06-467391a2a6e3" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
|
|
|
<Properties>
|
|
<DisplayName>Facebook.Yoga.Universal.Tests</DisplayName>
|
|
<PublisherDisplayName>anforste</PublisherDisplayName>
|
|
<Logo>Assets\StoreLogo.png</Logo>
|
|
</Properties>
|
|
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
|
|
</Dependencies>
|
|
|
|
<Resources>
|
|
<Resource Language="x-generate" />
|
|
</Resources>
|
|
<Applications>
|
|
<Application Id="vstest.executionengine.universal.App"
|
|
Executable="$targetnametoken$.exe"
|
|
EntryPoint="Facebook.Yoga.Universal.Tests.App">
|
|
<uap:VisualElements
|
|
DisplayName="Facebook.Yoga.Universal.Tests"
|
|
Square150x150Logo="Assets\Square150x150Logo.png"
|
|
Square44x44Logo="Assets\Square44x44Logo.png"
|
|
Description="Facebook.Yoga.Universal.Tests"
|
|
BackgroundColor="transparent">
|
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
|
|
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
|
</uap:VisualElements>
|
|
</Application>
|
|
</Applications>
|
|
<Capabilities>
|
|
<Capability Name="internetClient" />
|
|
</Capabilities>
|
|
</Package> |