-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAdaptiveProperties.nuspec
48 lines (43 loc) · 2.14 KB
/
AdaptiveProperties.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>AdaptiveProperties</id>
<version>2.0.0.0</version>
<title>XAML Adaptive Properties</title>
<authors>Rudy Spano</authors>
<owners>Rudy Spano</owners>
<projectUrl>http://rudy.spano.free.fr/?p=456</projectUrl>
<iconUrl>http://rudy.spano.free.fr/Other/AdaptiveProperties.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>This package allows you to easily create responsive xaml code using directly extra properties like X:XS.Column="1", X:XS.Row="3",X:XS.Margin="5,2,8,10", ...
This package exists for UWP Win10, Universal App 8.1 and WPF!
Xaml sample:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<X:XS.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</X:XS.RowDefinitions>
<X:XS.ColumnDefinitions>
<ColumnDefinition/>
</X:XS.ColumnDefinitions>
<TextBlock Margin="10" Grid.Row="0" Grid.Column="0"
X:XS.Margin="2" Text="FirstName"/>
<TextBox Margin="10" Grid.Row="0" Grid.Column="1"
X:XS.Margin="2" X:XS.Row="1" X:XS.Column="0"/>
</Grid>
See documentation for more information.</description>
<releaseNotes>Unique package for all</releaseNotes>
<copyright>Copyright 2016</copyright>
<tags>Responsive Adaptive Xaml WPF UWP Windows Store</tags>
</metadata>
<files>
<file src="content\NuGet.exe" target="content\NuGet.exe" />
<file src="AdaptiveProperties.UWP\bin\Release\AdaptiveProperties.UWP.dll" target="lib\.NETCore50\AdaptiveProperties.UWP.dll" />
<file src="AdaptiveProperties.WPF\bin\Release\AdaptiveProperties.WPF.dll" target="lib\net452\AdaptiveProperties.WPF.dll" />
<file src="AdaptiveProperties.WindowsStore\bin\Release\AdaptiveProperties.WindowsStore.dll" target="lib\portable-win81+wpa81\AdaptiveProperties.WindowsStore.dll" />
</files>
</package>