Devlord.Utilities
5.0.0.232
See the version list below for details.
dotnet add package Devlord.Utilities --version 5.0.0.232
NuGet\Install-Package Devlord.Utilities -Version 5.0.0.232
<PackageReference Include="Devlord.Utilities" Version="5.0.0.232" />
paket add Devlord.Utilities --version 5.0.0.232
#r "nuget: Devlord.Utilities, 5.0.0.232"
// Install Devlord.Utilities as a Cake Addin #addin nuget:?package=Devlord.Utilities&version=5.0.0.232 // Install Devlord.Utilities as a Cake Tool #tool nuget:?package=Devlord.Utilities&version=5.0.0.232
Multipurpose universal utilities library so you don't have to write your own utils for every project. Includes extensions, encapsulation of logging and encryption, DataReader-to-POCO mapping, a mailer throttle, and strongly-typed API callers. Also includes a .NET Core-compatible build of Encryptamajig.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.5 is compatible. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net451 is compatible. net452 was computed. net46 was computed. net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.5.1
- elmah (>= 1.2.2)
- Encryptamajig (>= 1.0.0)
- Microsoft.Extensions.Configuration (>= 1.1.1)
- Microsoft.Extensions.Configuration.Json (>= 1.1.1)
- Newtonsoft.Json (>= 10.0.1)
-
.NETFramework 4.6.2
- elmah (>= 1.2.2)
- Encryptamajig (>= 1.0.0)
- Microsoft.Extensions.Configuration (>= 1.1.1)
- Microsoft.Extensions.Configuration.Json (>= 1.1.1)
- Newtonsoft.Json (>= 10.0.1)
-
.NETStandard 1.5
- MailKit (>= 1.12.0)
- Microsoft.AspNetCore.Http (>= 1.1.1)
- Microsoft.Extensions.Configuration (>= 1.1.1)
- Microsoft.Extensions.Configuration.Json (>= 1.1.1)
- Microsoft.Extensions.Logging (>= 1.1.1)
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 10.0.1)
- System.Collections (>= 4.3.0)
- System.Runtime.Serialization.Xml (>= 4.3.0)
- System.Threading.Timer (>= 4.3.0)
- System.Xml.XmlSerializer (>= 4.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
* Incremented major version to 5.0 because of breaking changes in .NET Core
- There is some discussion as to whether these features are truly deprecated or just haven't been finished yet, because I've seen reports that some of the features will be added in .NET Core 2.0.
* Changed service timers due to the .NET System.Timers.Timer class having been deprecated. I tried to keep the public interface intact, as well as the behavior. But you'll need to change "ElapsedEventArgs" to "ServiceTimerState" in your events.
* Added MailKit dependency when using this library in .NET Core.
* Breaking changes to Mailbot class: Use `GetInstance(string smtpServer)` instead of the `Instance` property. Throttles are now smtp-server-specific.
* Changed WebClient to HttpClient, made RssConvert async.
* Absorbed [Encryptamajig](https://github.com/jbubriski/Encryptamajig) since it didn't appear to be maintained and I needed it updated to .NET Core.
* Note that `RestRouteHandler` is only compatible with .NET v4.5.1. If you are using this feature, make sure you have the right target set.
* Had some trouble with future-compatibility for `app.config`, so we've converted to the newer "ConfigurationBuilder" method. To set your settings for items in `Devlord.Utilities.Settings`, copy `devlord.utilities.json` into your project, and set "Copy to Output Directory" to either "Copy if newer" or "Copy always".
* `DRMapper.ParseRecord<T>` overload with rowIndex has been deprecated.