-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
src/System.Waf/System.Waf/System.Waf.Uwp/System.Waf.Uwp.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<metadata> | ||
<id>System.Waf.Uwp</id> | ||
<version>4.0.0-alpha2</version> | ||
<title>System.Waf.Uwp</title> | ||
<description>System.Waf is a lightweight framework that helps you to create well-structured XAML applications. This package contains the UWP (Universal Windows Platform) specific types.</description> | ||
<authors>jbe2277</authors> | ||
<owners>jbe2277</owners> | ||
|
||
<projectUrl>https://github.com/jbe2277/waf</projectUrl> | ||
<licenseUrl>https://github.com/jbe2277/waf/blob/master/LICENSE</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
|
||
<copyright>Copyright © 2016 jbe2277</copyright> | ||
<tags>WAF WPF MVVM XAML UWP Model-View-ViewModel UI MVC ViewModel PresentationModel Architecture Module Layered</tags> | ||
|
||
<releaseNotes>- Provide a core package of WAF as reusable portable library. | ||
- Improved ViewModel implementation for faster DataContext initialization when using MEF. | ||
- Add AsyncDelegateCommand class. | ||
- Change TargetFrameworkVersion to v4.6 for WPF applications | ||
- Removed types and members that were marked as obsolete in version 3. | ||
- Removed serialization support because the portable library does not support it. | ||
</releaseNotes> | ||
|
||
<dependencies> | ||
<group targetFramework="uap10.0"> | ||
<dependency id="System.Collections" version="4.0.10" /> | ||
<dependency id="System.Diagnostics.Debug" version="4.0.10" /> | ||
<dependency id="System.Diagnostics.Tools" version="4.0.0" /> | ||
<dependency id="System.Globalization" version="4.0.10" /> | ||
<dependency id="System.Resources.ResourceManager" version="4.0.0" /> | ||
<dependency id="System.Runtime" version="4.0.20" /> | ||
<dependency id="System.Runtime.Extensions" version="4.0.10" /> | ||
<dependency id="System.Runtime.InteropServices.WindowsRuntime" version="4.0.0" /> | ||
<dependency id="System.Runtime.WindowsRuntime" version="4.0.10" /> | ||
<dependency id="System.Runtime.WindowsRuntime.UI.Xaml" version="4.0.0" /> | ||
<dependency id="System.Threading.Tasks" version="4.0.10" /> | ||
|
||
<dependency id="System.Waf.Core" version="4.0.0-alpha2" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
|
||
<files> | ||
<file src="..\..\..\..\out\System.Waf\Release\System.Waf.Uwp.dll" target="lib\uap10.0" /> | ||
<file src="..\..\..\..\out\System.Waf\Release\System.Waf.Uwp.xml" target="lib\uap10.0" /> | ||
<file src="..\..\..\..\out\System.Waf\Release\System.Waf.Uwp.pdb" target="lib\uap10.0" /> | ||
<file src="..\..\..\..\out\System.Waf\Release\System.Waf.Uwp.pri" target="lib\uap10.0" /> | ||
<file src="..\..\..\..\out\System.Waf\Release\System.Waf.Uwp.xr.xml" target="lib\uap10.0\System.Waf.Uwp" /> | ||
<file src="..\..\..\..\out\System.Waf\Release\Themes\Generic.xbf" target="lib\uap10.0\System.Waf.Uwp\Themes" /> | ||
<file src="**\*.cs" target="src" /> | ||
<file src="**\*.xaml" target="src" /> | ||
</files> | ||
</package> |