Moonrise.Utils.Standard
3.2017.919.11371
I was maintaining two versions of this package with shared code and SLIGHT differences between .Net Standard & .Net Framework but have now shifted simply to the .Net Standard version.
If you migrate, the only breaking change you'll get is in the Logging package.
Oh and thanks for your interest,
Will (will@moonrise.media)
See the version list below for details.
dotnet add package Moonrise.Utils.Standard --version 3.2017.919.11371
NuGet\Install-Package Moonrise.Utils.Standard -Version 3.2017.919.11371
<PackageReference Include="Moonrise.Utils.Standard" Version="3.2017.919.11371" />
paket add Moonrise.Utils.Standard --version 3.2017.919.11371
#r "nuget: Moonrise.Utils.Standard, 3.2017.919.11371"
// Install Moonrise.Utils.Standard as a Cake Addin #addin nuget:?package=Moonrise.Utils.Standard&version=3.2017.919.11371 // Install Moonrise.Utils.Standard as a Cake Tool #tool nuget:?package=Moonrise.Utils.Standard&version=3.2017.919.11371
General utilities I've found useful as I go about my day-to-day work. Particular highlights include;
Extensions.EnumExtensions : "Modifiable" description attributes with parsing from descriptions to associated enum value.
Extensions.DateTimeExtensions : Neat little <DateTime var>.Within to find if the DT was within the last X seconds/days/etc
Extensions.StringExtensions: To & from Comma Separated Lists and extract text from within specified "marker strings".
Config.Settings: Typed reading from and writing default values to the .config or .json file.
Exceptions.ReasonedExceptionT: Base class for my exception pattern that accompanies an exception with an enum reason where the description attribute provides both the (formattable) message and intellisense. This leads to a centralised list of all possible exception reasons and messages.
Database.TransactedConnection : Handles nested transactions/connections.
Validation : A number of additional validation attributes including ListContent, Child/Parent, NonDefault
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- DeepCloner (>= 0.10.0)
- Newtonsoft.Json (>= 10.0.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Moonrise.Utils.Standard:
Package | Downloads |
---|---|
Moonrise.Utils.Test
Particular favourites are; PrivateWrapper - to allow access to the private methods of a "wrapped" object - via dynamic. Creator - To create repeatable but random data for "filled" classes to test - various properties available to control the range of filling. |
|
Moonrise.Utils.Database
TransactedConnection - allows thread-safe nested transactions. MigrationApp and MigrationState allow for migrations to be seperated out into a stand-alone app. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.2018.1024.16142 | 5,302 | 10/24/2018 | |
3.2018.1011.12155 | 1,703 | 10/11/2018 | |
3.2018.925.12551 | 1,709 | 9/25/2018 | |
3.2018.807.10453 | 2,138 | 8/7/2018 | |
3.2018.806.15140 | 1,898 | 8/6/2018 | |
3.2018.731.13404 | 1,793 | 7/31/2018 | |
3.2018.727.11351 | 3,867 | 7/27/2018 | |
3.2018.723.10262 | 1,726 | 7/23/2018 | |
3.2018.709.16260 | 2,899 | 7/9/2018 | |
3.2018.516.16573 | 2,607 | 5/16/2018 | |
3.2017.1115.15354 | 2,046 | 11/15/2017 | |
3.2017.1114.15544 | 2,134 | 11/14/2017 | |
3.2017.1114.15365 | 2,171 | 11/14/2017 | |
3.2017.1024.17320 | 2,327 | 10/24/2017 | |
3.2017.920.12191 | 2,104 | 9/22/2017 | |
3.2017.920.10361 | 2,059 | 9/20/2017 | |
3.2017.920.9185 | 2,116 | 9/20/2017 | |
3.2017.920.9144 | 2,117 | 9/20/2017 | |
3.2017.919.15252 | 2,116 | 9/19/2017 | |
3.2017.919.15002 | 2,144 | 9/19/2017 | |
3.2017.919.14220 | 2,100 | 9/19/2017 | |
3.2017.919.13243 | 2,025 | 9/19/2017 | |
3.2017.919.11371 | 2,081 | 9/19/2017 | |
3.2017.908.9593 | 2,075 | 9/11/2017 | |
3.2017.906.12170 | 2,280 | 9/6/2017 | |
3.2017.901.13541 | 2,197 | 9/1/2017 | |
3.2017.829.14334 | 2,166 | 8/29/2017 |
Logging has been removed and put into a new package (Moonrise.LoggingUtils) and namespace (Moonrise.Logging).
ConfigFile has been renamed Settings and now has indexers, can target User settings as well as Application settins and has configurable settings providers, via ISettingsProvider.