Added nuget package for Uno.UI.Lottie
This commit is contained in:
Родитель
971eb7699e
Коммит
8b73426ca4
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Uno.UI.Lottie</id>
|
||||
<version>1.0.0-to-be-set-by-ci</version>
|
||||
<title>Uno.UI.Lottie</title>
|
||||
<authors>nventive</authors>
|
||||
<owners>nventive</owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<projectUrl>https://github.com/nventive/Uno</projectUrl>
|
||||
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
|
||||
<description>
|
||||
Support for Lottie on Uno.UI.
|
||||
|
||||
This is the Uno-compatible version of the package Microsoft.Toolkit.Uwp.UI.Lottie.
|
||||
|
||||
Original documentation: https://docs.microsoft.com/fr-ca/windows/communitytoolkit/animations/lottie
|
||||
</description>
|
||||
<copyright>Copyright (C) 2015-2019 nventive inc. - all rights reserved</copyright>
|
||||
<repository type="git" url="https://github.com/nventive/Uno.git" />
|
||||
|
||||
<dependencies>
|
||||
|
||||
<group targetFramework="netstandard2.0">
|
||||
<dependency id="Uno.UI" version="to-be-set-by-ci" />
|
||||
</group>
|
||||
<!--<group targetFramework="xamarinios10">
|
||||
<dependency id="Uno.UI" version="to-be-set-by-ci" />
|
||||
</group>
|
||||
<group targetFramework="MonoAndroid80">
|
||||
<dependency id="Uno.UI" version="to-be-set-by-ci" />
|
||||
</group>-->
|
||||
|
||||
</dependencies>
|
||||
|
||||
<references>
|
||||
<!-- .NET Standard 2.0 -->
|
||||
<group targetFramework="netstandard2.0">
|
||||
<reference file="Uno.UI.Lottie.dll" />
|
||||
</group>
|
||||
<!-- iOS -> NOT SUPPORTED YET -->
|
||||
<!-- Android -> NOT SUPPORTED YET -->
|
||||
<!-- For UAP (UWP), the reference to Microsoft.Toolkit.Uwp.UI.Lottie will be added manually -->
|
||||
</references>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="..\src\AddIns\Uno.UI.Lottie\bin\Release\netstandard2.0\Uno.UI.Lottie.dll" target="lib\netstandard2.0" />
|
||||
<file src="..\src\AddIns\Uno.UI.Lottie\bin\Release\xamarinios10\Uno.UI.Lottie.dll" target="lib\xamarinios10" />
|
||||
<file src="..\src\AddIns\Uno.UI.Lottie\bin\Release\MonoAndroid80\Uno.UI.Lottie.dll" target="lib\MonoAndroid80" />
|
||||
</files>
|
||||
</package>
|
|
@ -10,7 +10,7 @@
|
|||
<projectUrl>https://github.com/nventive/Uno</projectUrl>
|
||||
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
|
||||
<description>A WPF host for the WebAssembly build on Uno.UI</description>
|
||||
<copyright>Copyright (C) 2015-2018 nventive inc. - all rights reserved</copyright>
|
||||
<copyright>Copyright (C) 2015-2019 nventive inc. - all rights reserved</copyright>
|
||||
<repository type="git" url="https://github.com/nventive/Uno.git" />
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<projectUrl>https://github.com/nventive/Uno</projectUrl>
|
||||
<iconUrl>https://nv-assets.azurewebsites.net/logos/uno.png</iconUrl>
|
||||
<description>The iOS, Android and WebAssembly UWP bridge</description>
|
||||
<copyright>Copyright (C) 2015-2018 nventive inc. - all rights reserved</copyright>
|
||||
<copyright>Copyright (C) 2015-2019 nventive inc. - all rights reserved</copyright>
|
||||
<repository type="git" url="https://github.com/nventive/Uno.git" />
|
||||
|
||||
<dependencies>
|
||||
|
|
|
@ -139,9 +139,17 @@
|
|||
Namespace="$(NugetNamespace)"
|
||||
Prefix="x"/>
|
||||
|
||||
<!-- Create the packages -->
|
||||
<XmlUpdate
|
||||
XmlFileName=".\Uno.UI.Lottie.nuspec"
|
||||
XPath="/x:package/x:metadata/x:dependencies//x:dependency[@id='Uno.UI']/@version"
|
||||
Value="$(GITVERSION_FullSemVer)"
|
||||
Namespace="$(NugetNamespace)"
|
||||
Prefix="x"/>
|
||||
|
||||
<!-- Create the packages -->
|
||||
<Exec Command="$(NuGetBin) pack Uno.UI.nuspec -Verbosity Detailed -Version "$(GITVERSION_FullSemVer)"" />
|
||||
<Exec Command="$(NuGetBin) pack Uno.UI.WpfHost.nuspec -Verbosity Detailed -Version "$(GITVERSION_FullSemVer)"" />
|
||||
<Exec Command="$(NuGetBin) pack Uno.UI.Lottie.nuspec -Verbosity Detailed -Version "$(GITVERSION_FullSemVer)"" />
|
||||
</Target>
|
||||
|
||||
<Import Project="GetMsBuildVersion.targets" />
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
<NoWarn>$(NoWarn);NU1701</NoWarn>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<Deterministic>true</Deterministic>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -44,7 +43,6 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<UnoUIGeneratorsBinPath>..\..\SourceGenerators\Uno.UI.SourceGenerators\bin\$(Configuration)</UnoUIGeneratorsBinPath>
|
||||
<Version>1.44.0-dev.977</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="..\..\SourceGenerators\Uno.UI.SourceGenerators\Content\Uno.UI.SourceGenerators.props" />
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<UnoUIGeneratorsBinPath>..\SourceGenerators\Uno.UI.SourceGenerators\bin\$(Configuration)</UnoUIGeneratorsBinPath>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
</PropertyGroup>
|
||||
|
||||
<Import Project="..\SourceGenerators\Uno.UI.SourceGenerators\Content\Uno.UI.SourceGenerators.props" />
|
||||
|
|
Загрузка…
Ссылка в новой задаче