forked from vpapenko/ColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorPicker.nuspec
80 lines (75 loc) · 4.58 KB
/
ColorPicker.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ColorPicker.Xamarin.Forms</id>
<version>0.1.0</version>
<title>ColorPicker</title>
<authors>Victor Papenko</authors>
<owners>Victor Papenko</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/vpapenko/ColorPicker</projectUrl>
<icon>NuGet.icon.png</icon>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Collection of color pickers for Xamarin Forms Android, iOS, and UWP.</description>
<tags>ColorPicker ColorWheel Xamarin Forms Android iOS UWP dotnet netstandard csharp c-sharp</tags>
<dependencies>
<group targetFramework="netstandard2.1">
<dependency id="ColorMinePortable" version="2.0.1" />
<dependency id="SkiaSharp" version="1.60.3" />
<dependency id="SkiaSharp.Views.Forms" version="1.60.3" />
<dependency id="Xamarin.Forms" version="4.7.0.968" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="ColorMinePortable" version="2.0.1" />
<dependency id="SkiaSharp" version="1.60.3" />
<dependency id="SkiaSharp.Views.Forms" version="1.60.3" />
<dependency id="Xamarin.Forms" version="4.7.0.968" />
</group>
<group targetFramework="MonoAndroid10">
<dependency id="ColorMinePortable" version="2.0.1" />
<dependency id="SkiaSharp" version="1.68.3" />
<dependency id="SkiaSharp.Views.Forms" version="1.68.3" />
<dependency id="Xamarin.Forms" version="4.7.0.968" />
</group>
<group targetFramework="Xamarin.iOS10">
<dependency id="ColorMinePortable" version="2.0.1" />
<dependency id="SkiaSharp" version="1.68.3" />
<dependency id="SkiaSharp.Views.Forms" version="1.68.3" />
<dependency id="Xamarin.Forms" version="4.7.0.968" />
</group>
<group targetFramework="UAP10">
<dependency id="ColorMinePortable" version="2.0.1" />
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="6.2.10" />
<dependency id="SkiaSharp" version="1.60.3" />
<dependency id="SkiaSharp.Views.Forms" version="1.60.3" />
<dependency id="Xamarin.Forms" version="4.7.0.968" />
</group>
</dependencies>
</metadata>
<files>
<file src="Assets\NuGet.icon.png" target="" />
<!-- NetStandard 2.1-->
<file src="ColorPicker/ColorPicker/bin/ReleaseNuGet/netstandard2.1/ColorPicker.dll" target="lib/netstandard2.1/ColorPicker.dll" />
<!-- NetStandard 2.0-->
<file src="ColorPicker/ColorPicker/bin/ReleaseNuGet/netstandard2.0/ColorPicker.dll" target="lib/netstandard2.0/ColorPicker.dll" />
<!-- Xamarin.Android -->
<file src="ColorPicker/ColorPicker.Android/bin/ReleaseNuGet/ColorPicker.dll" target="lib/MonoAndroid10/ColorPicker.dll" />
<file src="ColorPicker/ColorPicker.Android/bin/ReleaseNuGet/ColorPicker.Android.dll" target="lib/MonoAndroid10/ColorPicker.Android.dll" />
<!-- Xamarin.iOS -->
<file src="ColorPicker/ColorPicker.iOS/bin/ReleaseNuGet/ColorPicker.dll" target="lib/Xamarin.iOS10/ColorPicker.dll" />
<file src="ColorPicker/ColorPicker.iOS/bin/ReleaseNuGet/ColorPicker.iOS.dll" target="lib/Xamarin.iOS10/ColorPicker.iOS.dll" />
<!-- UAP10 x86-->
<file src="ColorPicker/ColorPicker.UWP/bin/x86/ReleaseNuGet/ColorPicker.UWP.dll" target="lib/UAP10/x86" />
<file src="ColorPicker/ColorPicker.UWP/bin/x86/ReleaseNuGet/ColorPicker.dll" target="lib/UAP10/x86/ColorPicker.dll" />
<!-- UAP10 x64-->
<file src="ColorPicker/ColorPicker.UWP/bin/x64/ReleaseNuGet/ColorPicker.UWP.dll" target="lib/UAP10/x64" />
<file src="ColorPicker/ColorPicker.UWP/bin/x64/ReleaseNuGet/ColorPicker.dll" target="lib/UAP10/x64/ColorPicker.dll" />
<!-- UAP10 ARM-->
<file src="ColorPicker/ColorPicker.UWP/bin/ARM/ReleaseNuGet/ColorPicker.UWP.dll" target="lib/UAP10/ARM" />
<file src="ColorPicker/ColorPicker.UWP/bin/ARM/ReleaseNuGet/ColorPicker.dll" target="lib/UAP10/ARM/ColorPicker.dll" />
<!-- UAP10 ARM64-->
<file src="ColorPicker/ColorPicker.UWP/bin/ARM64/ReleaseNuGet/ColorPicker.UWP.dll" target="lib/UAP10/ARM64" />
<file src="ColorPicker/ColorPicker.UWP/bin/ARM64/ReleaseNuGet/ColorPicker.dll" target="lib/UAP10/ARM64/ColorPicker.dll" />
<file src="ColorPicker.Xamarin.Forms.props" target="build/UAP10" />
</files>
</package>