This repository has been archived by the owner on Jul 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
UWPHelper.nuspec
48 lines (44 loc) · 2.68 KB
/
UWPHelper.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>
<metadata>
<id>UWPHelper</id>
<!-- Managed in appveyor.yml -->
<version>1.0.0.0</version>
<title>UWPHelper</title>
<authors>Marian Dolinský</authors>
<owners>Marian Dolinský</owners>
<licenseUrl>https://github.com/bramborman/UWPHelper/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/bramborman/UWPHelper</projectUrl>
<iconUrl>https://raw.githubusercontent.com/bramborman/UWPHelper/master/Assets/UWPHelper%20Icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A set of useful UWP tools such as converters, triggers, custom controls and helpers.</description>
<copyright>© 2017 Marian Dolinský</copyright>
<tags>UWP Toolkit Helper Helpers XAML C#</tags>
<dependencies>
<group targetFramework="uap10.0">
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.4.0"/>
<dependency id="Microsoft.Services.Store.SDK" version="10.1705.16001"/>
<dependency id="Newtonsoft.Json" version="10.0.3"/>
<dependency id="NotifyPropertyChangedBase" version="1.3.0"/>
</group>
</dependencies>
</metadata>
<files>
<!-- Causes referencing this NuGet package to also automatically reference the relevant extension SDKs. -->
<file src="UWPHelper.targets" target="build\uap10.0\UWPHelper.targets"/>
<!-- Architecture-independent reference library for use at compile-time; generated by the PowerShell script. -->
<file src="UWPHelper\bin\Reference\Release\UWPHelper.dll" target="ref\uap10.0"/>
<!-- XML documentation file goes together with the reference library. -->
<!--TODO: <file src="UWPHelper\bin\x86\Release\UWPHelper.xml" target="ref\uap10.0"/>-->
<!-- Resource files go together with the reference library. -->
<file src="UWPHelper\bin\x86\Release\UWPHelper.pri" target="ref\uap10.0"/>
<file src="UWPHelper\bin\x86\Release\UWPHelper\**" target="ref\uap10.0\UWPHelper"/>
<!-- The architecture-specific files go in architecture-specific directories. -->
<file src="UWPHelper\bin\x86\Release\UWPHelper.dll" target="runtimes\win10-x86\lib\uap10.0"/>
<file src="UWPHelper\bin\x86\Release\UWPHelper.pdb" target="runtimes\win10-x86\lib\uap10.0"/>
<file src="UWPHelper\bin\x64\Release\UWPHelper.dll" target="runtimes\win10-x64\lib\uap10.0"/>
<file src="UWPHelper\bin\x64\Release\UWPHelper.pdb" target="runtimes\win10-x64\lib\uap10.0"/>
<file src="UWPHelper\bin\arm\Release\UWPHelper.dll" target="runtimes\win10-arm\lib\uap10.0"/>
<file src="UWPHelper\bin\arm\Release\UWPHelper.pdb" target="runtimes\win10-arm\lib\uap10.0"/>
</files>
</package>