forked from PrismLibrary/Prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrism.Windows.nuspec
45 lines (45 loc) · 2.84 KB
/
Prism.Windows.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Prism.Windows</id>
<version>$version$</version>
<title>Prism 6 for Windows UWP</title>
<authors>Brian Lagunas, Brian Noyes</authors>
<owners>Brian Lagunas, Brian Noyes</owners>
<licenseUrl>https://github.com/PrismLibrary/Prism/blob/master/LICENSE</licenseUrl>
<projectUrl>http://prismlibrary.com/</projectUrl>
<iconUrl>http://prismlibrary.github.io/images/prism-logo-graphic-128.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Prism is a fully open source version of the Prism guidance originally produced by Microsoft Patterns & Practices. Prism provides an implementation of a collection of design patterns that are helpful in writing well structured and maintainable XAML applications, including MVVM, dependency injection, commanding, event aggregation, and more. Prism.Windows contains the platform specific features for Windows 10 UWP.</description>
<summary>Prism provides an implementation of a collection of design patterns that are helpful in writing well structured and maintainable applications.</summary>
<releaseNotes>$releaseNotes$</releaseNotes>
<language>en-US</language>
<tags>prism mvvm uwp uap xaml</tags>
<dependencies>
<group targetFramework="uap10.0">
<dependency id="Prism.Core" version="$coreVersion$" />
<dependency id="CommonServiceLocator" version="1.3.0" />
<dependency id="System.Collections" version="4.0.10" />
<dependency id="System.ComponentModel" version="4.0.0" />
<dependency id="System.ComponentModel.Annotations" version="4.0.10" />
<dependency id="System.Diagnostics.Debug" version="4.0.10" />
<dependency id="System.Globalization" version="4.0.10" />
<dependency id="System.IO" version="4.0.10" />
<dependency id="System.Linq" version="4.0.0" />
<dependency id="System.ObjectModel" version="4.0.10" />
<dependency id="System.Reflection" version="4.0.10" />
<dependency id="System.Reflection.Extensions" version="4.0.0" />
<dependency id="System.Runtime" version="4.0.20" />
<dependency id="System.Runtime.InteropServices.WindowsRuntime" version="4.0.0" />
<dependency id="System.Runtime.Serialization.Xml" version="4.0.10" />
<dependency id="System.Runtime.WindowsRuntime" version="4.0.10" />
<dependency id="System.Threading" version="4.0.10" />
<dependency id="System.Threading.Tasks" version="4.0.10" />
<dependency id="System.Xml.XDocument" version="4.0.10" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\Windows10\Prism.Windows\bin\Release-Signed\Prism.Windows.*" target="lib\uap10.0\" exclude="**\*.pdb" />
</files>
</package>