Library | Versions and Stats |
---|---|
Westwind.Utilities | |
Westwind.Utilities.Data | |
Westwind.Utilities.Windows | |
Documentation |
Supports the following Targets:
- .NET 8.0,6.0
- .NET Standard 2.0
- .NET 4.62+
You can install the package from NuGet using the Visual Studio Package Manager or NuGet UI:
PM> install-package westwind.utilities
As of version 4.0 the Data
related features are located in a separate NuGet Package:
PM> install-package westwind.utilities.data
If you're switching from v3 or earlier and are using the Data Access features of the library, this is a breaking change that requires you to add the new
westwind.utilities.data
package.
Every .NET application requires small, common and often repeated tasks. This library is a collection of those things that I commonly need on a regular basis and have compiled over the years.
It includes tools for:
-
Application Configuration
class to create code-first strongly typed configuration classes for your applications -
Lightweight ADO.NET Data Access Layer
ideal for components or apps that need data access but don't need the bulk of Entity Framework or similar ORM.
requires adding thewestwind.utilities.data
package. -
General Purpose Utility Classes:
-
Scheduler (for background processing)
-
HttpClient (HttpWebRequest wrapper)
-
HttpUtils (Simple REST client helpers)
-
SmptClientNative (SmtpClient Wrapper)
and much, much more.
It's worthwhile to browse through the source code or the documentation to find out the myriad of useful functionality that is available, all in a small single assembly.
This assembly is the base for most other West Wind libraries.
This library is published under MIT license terms.
Copyright © 2012-2023 Rick Strahl, West Wind Technologies
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.