Skip to content

Commit 10ad87b

Browse files
committed
NuGet: Add Descriptions and ReleaseNotes
1 parent 3f84d13 commit 10ad87b

File tree

8 files changed

+36
-8
lines changed

8 files changed

+36
-8
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System.Reflection;
22

33
[assembly: AssemblyTitle("System.Waf.Core")]
4-
[assembly: AssemblyDescription("")]
4+
[assembly: AssemblyDescription("System.Waf is a lightweight framework that helps you to create well-structured XAML applications. "
5+
+ "This is the portable core part that can be used in different application types.")]
56
[assembly: AssemblyConfiguration("")]
67
[assembly: AssemblyProduct("System.Waf.Core")]

src/System.Waf/System.Waf/System.Waf.Core/System.Waf.Core.nuspec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
<copyright>Copyright © 2016 jbe2277</copyright>
1616
<tags>WAF WPF MVVM XAML UWP Model-View-ViewModel UI MVC ViewModel PresentationModel Architecture Module Layered</tags>
1717

18-
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
18+
<releaseNotes>- Provide a core package of WAF as reusable portable library.
19+
- Improved ViewModel implementation for faster DataContext initialization when using MEF.
20+
- Add AsyncDelegateCommand class.
21+
- Change TargetFrameworkVersion to v4.6 for WPF applications
22+
- Removed types and members that were marked as obsolete in version 3.
23+
- Removed serialization support because the portable library does not support it.
24+
</releaseNotes>
1925
</metadata>
2026
</package>

src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
using System.Runtime.CompilerServices;
33

44
[assembly: AssemblyTitle("System.Waf.UnitTesting.Core")]
5-
[assembly: AssemblyDescription("")]
5+
[assembly: AssemblyDescription("System.Waf is a lightweight framework that helps you to create well-structured XAML applications. "
6+
+ "This package supports writing unit tests. It is the portable core part that can be used in different application types.")]
67
[assembly: AssemblyConfiguration("")]
78
[assembly: AssemblyProduct("System.Waf.UnitTesting.Core")]
89

src/System.Waf/System.Waf/System.Waf.UnitTesting.Core/System.Waf.UnitTesting.Core.nuspec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
<copyright>Copyright © 2016 jbe2277</copyright>
1616
<tags>WAF WPF MVVM XAML UWP Model-View-ViewModel UI MVC ViewModel PresentationModel Architecture Module Layered</tags>
1717

18-
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
18+
<releaseNotes>- Provide a core package of WAF as reusable portable library.
19+
- Improved ViewModel implementation for faster DataContext initialization when using MEF.
20+
- Add AsyncDelegateCommand class.
21+
- Change TargetFrameworkVersion to v4.6 for WPF applications
22+
- Removed types and members that were marked as obsolete in version 3.
23+
- Removed serialization support because the portable library does not support it.
24+
</releaseNotes>
1925
</metadata>
2026
</package>

src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55

66
[assembly: AssemblyTitle("System.Waf.UnitTesting.Wpf")]
7-
[assembly: AssemblyDescription("")]
7+
[assembly: AssemblyDescription("System.Waf is a lightweight framework that helps you to create well-structured XAML applications. "
8+
+ "This package supports writing unit tests. It contains the WPF (Windows Presentation Foundation) specific types.")]
89
[assembly: AssemblyConfiguration("")]
910
[assembly: AssemblyProduct("System.Waf.UnitTesting.Wpf")]
1011

src/System.Waf/System.Waf/System.Waf.UnitTesting.Wpf/System.Waf.UnitTesting.Wpf.nuspec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
<copyright>Copyright © 2016 jbe2277</copyright>
1616
<tags>WAF WPF MVVM XAML UWP Model-View-ViewModel UI MVC ViewModel PresentationModel Architecture Module Layered</tags>
1717

18-
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
18+
<releaseNotes>- Provide a core package of WAF as reusable portable library.
19+
- Improved ViewModel implementation for faster DataContext initialization when using MEF.
20+
- Add AsyncDelegateCommand class.
21+
- Change TargetFrameworkVersion to v4.6 for WPF applications
22+
- Removed types and members that were marked as obsolete in version 3.
23+
- Removed serialization support because the portable library does not support it.
24+
</releaseNotes>
1925
</metadata>
2026
</package>

src/System.Waf/System.Waf/System.Waf.Wpf/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66

77
[assembly: AssemblyTitle("System.Waf.Wpf")]
8-
[assembly: AssemblyDescription("")]
8+
[assembly: AssemblyDescription("System.Waf is a lightweight framework that helps you to create well-structured XAML applications. "
9+
+ "This package contains the WPF (Windows Presentation Foundation) specific types.")]
910
[assembly: AssemblyConfiguration("")]
1011
[assembly: AssemblyProduct("System.Waf.Wpf")]
1112

src/System.Waf/System.Waf/System.Waf.Wpf/System.Waf.Wpf.nuspec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
<copyright>Copyright © 2016 jbe2277</copyright>
1616
<tags>WAF WPF MVVM XAML UWP Model-View-ViewModel UI MVC ViewModel PresentationModel Architecture Module Layered</tags>
1717

18-
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
18+
<releaseNotes>- Provide a core package of WAF as reusable portable library.
19+
- Improved ViewModel implementation for faster DataContext initialization when using MEF.
20+
- Add AsyncDelegateCommand class.
21+
- Change TargetFrameworkVersion to v4.6 for WPF applications
22+
- Removed types and members that were marked as obsolete in version 3.
23+
- Removed serialization support because the portable library does not support it.
24+
</releaseNotes>
1925
</metadata>
2026
</package>

0 commit comments

Comments
 (0)