Skip to content

Commit c7dcafc

Browse files
committed
Updated project NuGet descriptions
1 parent 8161ccd commit c7dcafc

File tree

22 files changed

+73
-57
lines changed

22 files changed

+73
-57
lines changed

src/MADE.Collections/MADE.Collections.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Collections</Product>
77
<Description>
8-
This package includes collection helpers such as:
9-
- ObservableItemCollection for providing an ObservableCollection that manages both collection changed and item property changed events.
8+
This package includes:
9+
- CollectionExtensions for extending collection objects with helper methods, such as updating an item or making two collections equal.
10+
- DictionaryExtensions for extending dictionary objects with helper methods, such as adding or updating an item based on a key.
1011
- GenericEqualityComparer for providing a simple IEqualityComparer for objects.
12+
- ObservableItemCollection for providing an ObservableCollection that manages both collection changed and item property changed events.
13+
- QueryableExtensions for extending queryable objects with helper methods, such as chunking the query into batched sizes.
1114
</Description>
12-
<PackageTags>MADE Collections Equality Extensions Dictionary</PackageTags>
15+
<PackageTags>MADE Collections Observable Equality Extensions Dictionary Chunk</PackageTags>
1316
</PropertyGroup>
1417

1518
</Project>

src/MADE.Data.Converters/MADE.Data.Converters.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Data Converters</Product>
77
<Description>
8-
This package includes data conversion helpers such as:
8+
This package includes:
9+
- BooleanToStringValueConverter for converting between a boolean and a given string value.
10+
- DateTimeExtensions for extending DateTime objects with helper methods, such as getting current age or setting time.
911
- DateTimeToStringValueConverter for converting between a DateTime and string value.
10-
- DateTimeExtensions for extending the DateTime object with methods for getting current age or setting time.
1112
- MathExtensions for providing additional mathematical functions such as Degrees to Radians.
1213
- StringExtensions for converting a string to other value types such as int, float, double, or boolean.
1314
</Description>
14-
<PackageTags>MADE Data Converter DateTime Math</PackageTags>
15+
<PackageTags>MADE Data Value Converter DateTime Math</PackageTags>
1516
</PropertyGroup>
1617

1718
<ItemGroup>

src/MADE.Data.EFCore/MADE.Data.EFCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<PropertyGroup>
44
<TargetFrameworks>net5.0;netcoreapp3.1</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Product>MADE.NET Data EF Core</Product>
6+
<Product>MADE.NET Entity Framework</Product>
77
<Description>
8-
This package includes Entity Framework Core helpers such as:
9-
- DbContextExtensions, for additional helpers to EF data contexts.
10-
- EntityBase, for providing a base definition for entities.
11-
- UtcDateTimeConverter, to help with the storing of dates in a UTC format.
8+
This package includes:
9+
- DbContextExtensions for extending DbContext objects with helper methods, such as updating an item asynchronously and removing items matching a specified criteria.
10+
- EntityBase for providing a base definition for an entity within a DbContext, including a primary key, created and updated dates.
11+
- UtcDateTimeConverter for ensuring that DateTime values are stored and retrieving in UTC format.
1212
</Description>
1313
<PackageTags>MADE EFCore EntityFramework</PackageTags>
1414

src/MADE.Data.Validation/MADE.Data.Validation.csproj

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,20 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Data Validation</Product>
77
<Description>
8-
This package includes data validation helpers such as:
9-
- AlphaValidator for validating whether a string contains only alpha characters.
8+
This package includes:
109
- AlphaNumericValidator for validating whether a string contains only alphanumeric characters.
10+
- AlphaValidator for validating whether a string contains only alpha characters.
1111
- BetweenValidator for validating whether a value is within a minimum and maximum range.
1212
- EmailValidator for validating whether a value is an email address.
1313
- IpAddressValidator for validating whether a value is a valid IP address.
14-
- MinValueValidator for validating whether a value is above a minimum value.
14+
- MaxLengthValidator for validating whether a value is below a maximum length.
1515
- MaxValueValidator for validating whether a value is below a maximum value.
16+
- MinLengthValidator for validating whether a value is above a minimum length.
17+
- MinValueValidator for validating whether a value is above a minimum value.
18+
- RegexValidator for validating whether a value matches a regular expression.
1619
- RequiredValidator for validating whether a value has been provided.
1720
</Description>
18-
<PackageTags>MADE Data Validation RegEx Range Email IpAddress Min Max Required</PackageTags>
21+
<PackageTags>MADE Data Validation RegEx Range Email IpAddress Min Max Required Length</PackageTags>
1922
</PropertyGroup>
2023

2124
<ItemGroup>

src/MADE.Diagnostics/MADE.Diagnostics.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Diagnostics</Product>
77
<Description>
8-
This package includes diagnostics helpers such as:
9-
- FileEventLogger for logging debug, info, warning, error, and critical messages to a file.
8+
This package includes:
109
- AppDiagnostics for providing an application-wide exception handler.
10+
- FileEventLogger for logging debug, info, warning, error, and critical messages to a file.
1111
- StopwatchHelper to help track the time of multiple long running operations.
1212
</Description>
1313
<PackageTags>MADE Diagnostics EventLog Logger Exception Stopwatch</PackageTags>

src/MADE.Foundation/MADE.Foundation.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Foundation</Product>
77
<Description>
8-
This package includes foundational helpers for other MADE libraries such as:
9-
-
8+
This package includes:
9+
- PlatformApiHelper for providing a mechanism of ensuring cross-platform functionality in MADE libraries can be coded safely where APIs are not supported.
1010
</Description>
11-
<PackageTags>MADE Foundation Helpers</PackageTags>
11+
<PackageTags>MADE Foundation Helpers Type Check Platform Uno</PackageTags>
1212

1313
</PropertyGroup>
1414

src/MADE.Media.Image/MADE.Media.Image.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Images</Product>
77
<Description>
8-
This package includes image helpers such as:
8+
This package includes:
99
- LoadStorageFileThumbnailImageBehavior for providing the ability to show a thumbnail for a storage file on an Image.
1010
</Description>
1111
<PackageTags>MADE Media Images Thumbnail StorageFile</PackageTags>

src/MADE.Networking/MADE.Networking.csproj

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Networking</Product>
77
<Description>
8-
This package includes networking helpers such as:
9-
- NetworkRequestManager for handling an HTTP network request queue with success and error callbacks.
10-
- NetworkRequest instances for simplifying JSON GET, POST, PUT, PATCH, and DELETE requests.
8+
This package includes:
119
- HttpResponseMessage{T} for deserializing content of a HttpResponseMessage to a specified type.
10+
- HttpResponseMessageExtensions for extending HttpResponseMessage objects with helper methods, such as deserializing the content.
11+
- JsonNetworkRequest instances for simplifying JSON GET, POST, PUT, PATCH, and DELETE requests.
12+
- NetworkRequestManager for handling an HTTP network request queue with success and error callbacks.
13+
- StreamNetworkRequest instances for simplifying data stream GET requests.
14+
- UriExtensions for extending Uri objects with helper methods, such as retrieving a query value.
1215
</Description>
1316
<PackageTags>MADE Networking Json Stream HttpClient</PackageTags>
1417
</PropertyGroup>

src/MADE.Runtime/MADE.Runtime.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Runtime</Product>
77
<Description>
8-
This package includes runtime helpers such as:
8+
This package includes:
9+
- ReflectionExtensions for extending objects with helper methods, such as retrieving the value by property name string.
910
- WeakReferenceCallback for providing an approach to callbacks with a WeakReference.
1011
- WeakReferenceEventHandler for providing an approach to event handlers with a WeakReference.
1112
</Description>
12-
<PackageTags>MADE Runtime WeakReference</PackageTags>
13+
<PackageTags>MADE Runtime WeakReference Reflection</PackageTags>
1314

1415
</PropertyGroup>
1516

src/MADE.Testing/MADE.Testing.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Product>MADE.NET Testing</Product>
77
<Description>
8-
This package includes automated testing helpers such as:
9-
- CollectionAssertExtensions for providing improvements to running automated tests on collections.
8+
This package includes:
9+
- CollectionAssertExtensions for extending collection objects with helper methods, such as asserting whether a collection is equivalent to another.
1010
</Description>
1111
<PackageTags>MADE Testing Assert Collections</PackageTags>
1212

0 commit comments

Comments
 (0)