Skip to content

Commit

Permalink
Add System.Waf.Uwp.nuspec
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Mar 23, 2016
1 parent e54352a commit abf65f0
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
using System.Reflection;

[assembly: AssemblyTitle("System.Waf.Uwp")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("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.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyProduct("System.Waf.Uwp")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
<ItemGroup>
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
<None Include="project.json" />
<None Include="System.Waf.Uwp.nuspec" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\SharedAssemblyInfo.cs">
Expand Down Expand Up @@ -86,7 +87,7 @@
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>xcopy "$(TargetDir)System.Waf.Uwp.xr.xml" "$(TargetDir)System.Waf.Uwp\"</PostBuildEvent>
<PostBuildEvent>xcopy "$(TargetDir)System.Waf.Uwp.xr.xml" "$(TargetDir)System.Waf.Uwp\" /Y</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
55 changes: 55 additions & 0 deletions src/System.Waf/System.Waf/System.Waf.Uwp/System.Waf.Uwp.nuspec
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>

0 comments on commit abf65f0

Please sign in to comment.