pauldeen79.CrossCutting.Utilities.Parsers 5.2.1

dotnet add package pauldeen79.CrossCutting.Utilities.Parsers --version 5.2.1
NuGet\Install-Package pauldeen79.CrossCutting.Utilities.Parsers -Version 5.2.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="pauldeen79.CrossCutting.Utilities.Parsers" Version="5.2.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add pauldeen79.CrossCutting.Utilities.Parsers --version 5.2.1
#r "nuget: pauldeen79.CrossCutting.Utilities.Parsers, 5.2.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install pauldeen79.CrossCutting.Utilities.Parsers as a Cake Addin
#addin nuget:?package=pauldeen79.CrossCutting.Utilities.Parsers&version=5.2.1

// Install pauldeen79.CrossCutting.Utilities.Parsers as a Cake Tool
#tool nuget:?package=pauldeen79.CrossCutting.Utilities.Parsers&version=5.2.1

CrossCutting

Generic utilities and other stuff, usable in any layer of any solution. We're targeting .NET Standard 2.0, so you can even use .NET Framework 4.x if you want to.

This repository consists of the following packages:

Package name Description
CrossCutting.Common Provider for system date and user name, some useful extension methods on System.Object and System.String, and the Result class
CrossCutting.Common.Testing Helps you test constructors on null checks
CrossCutting.Data.Abstractions Abstraction for executing database commands using System.Data namespace (IDbConnection and IDbCommand)
CrossCutting.Data.Core Default implementation of database commands
CrossCutting.Data.Sql Extension methods for working with database commands in System.Data namespace (IDbConnection)
CrossCutting.DataTableDumper Produces flat-text data tables from objects
CrossCutting.Utilities.ObjectDumper Produces readable flat-text representation from objects, for use in logging
CrossCutting.Utilities.Parsers Parser for pipe-delmited data table strings, TSQL INSERT INTO statements, function strings, math expressions and formattable strings (dynamic interpolated strings)
System.Data.Stub Stubs for System.Data interfaces like IDbConnection, IDbCommand and IDataReader

Using NSubstitute or Moq as mock factory for CrossCutting.Common.Testing

To use NSubstitute as a mock factory for the code in CrossCutting.Common.Testing, create a test helper project within your solution, and add the following code:

    public static void ShouldThrowArgumentNullExceptionsInConstructorsOnNullArguments(
        this Type type,
        Func<ParameterInfo, bool>? parameterPredicate = null,
        Func<ParameterInfo, object?>? parameterReplaceDelegate = null,
        Func<ConstructorInfo, bool>? constructorPredicate = null)
        => ShouldThrowArgumentNullExceptionsInConstructorsOnNullArguments(
            type,
            t => t.CreateInstance(parameterType => Substitute.For(new[] { parameterType }, Array.Empty<object>()), parameterReplaceDelegate, constructorPredicate),
            parameterPredicate,
            parameterReplaceDelegate,
            constructorPredicate);

You can easily replace NSubstitute with Moq, if you want, by changing the factory delegate argument to this:

t => t.CreateInstance(parameterType => ((Mock)Activator.CreateInstance(typeof(Mock<>).MakeGenericType(parameterType))).Object, parameterReplaceDelegate, constructorPredicate),

Upgrade from 2.x to 3.0

There has been a breaking change in the Result class, which lead to a new major version. To port the old code, you can fix most errors by replace this:

Result<([^>]+)>\.([^(]+)\(

With this:

Result.$2<$1>(
Product 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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on pauldeen79.CrossCutting.Utilities.Parsers:

Package Downloads
pauldeen79.TemplateFramework.TemplateProviders.StringTemplateProvider

Framework for template processing and code generation

pauldeen79.ClassFramework.Pipelines

Package Description

pauldeen79.TemplateFramework.TemplateProviders.FormattableStringTemplateProvider

Framework for template processing and code generation

pauldeen79.ExpressionFramework.Domain.Parser

Package Description

pauldeen79.CrossCutting.Utilities.Parsers.Builders

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.2.1 216 5/9/2024
5.1.1 293 5/3/2024
5.1.0 276 4/27/2024
5.0.0 369 4/16/2024
4.0.0 378 4/5/2024
3.7.0 720 3/22/2024
3.6.0 110 3/21/2024
3.5.0 333 3/15/2024
3.4.0 252 3/14/2024
3.3.0 1,127 11/24/2023
3.2.0 189 11/19/2023
3.0.0 263 10/21/2023
2.12.0 182 10/6/2023
2.10.0 241 9/13/2023
2.9.0 267 9/9/2023
2.8.0 228 9/9/2023
2.7.59 186 9/8/2023
2.7.58 190 9/6/2023
2.7.57 300 8/31/2023
2.7.56 165 8/30/2023
2.7.55 359 5/15/2023
2.7.54 172 5/15/2023
2.7.53 369 5/8/2023
2.7.52 582 5/6/2023
2.7.51 183 5/5/2023
2.7.50 168 5/2/2023
2.7.49 163 5/2/2023
2.7.48 140 5/2/2023
2.7.47 134 5/2/2023
2.7.46 151 5/2/2023
2.7.45 150 5/2/2023
2.7.44 153 5/2/2023
2.7.43 142 5/2/2023
2.7.42 140 5/1/2023
2.7.41 161 5/1/2023
2.7.40 247 4/28/2023
2.7.39 175 4/27/2023
2.7.38 176 4/27/2023
2.7.37 171 4/26/2023
2.7.36 174 4/24/2023
2.7.35 194 4/22/2023
2.7.34 192 4/20/2023
2.7.33 197 4/17/2023
2.7.32 191 4/17/2023
2.7.31 148 4/16/2023
2.7.30 173 4/10/2023
2.7.29 194 4/10/2023
2.7.28 177 4/9/2023
2.7.27 184 4/9/2023
2.7.26 176 4/7/2023
2.7.25 399 10/14/2022
2.7.24 412 10/14/2022
2.7.23 417 9/20/2022
2.7.22 405 8/28/2022
2.7.21 407 8/26/2022
2.7.20 398 8/26/2022
2.7.19 388 8/24/2022
2.7.18 403 8/15/2022
2.7.17 419 7/1/2022
2.7.16 406 6/30/2022
2.7.15 405 6/29/2022
2.7.14 411 6/29/2022
2.7.13 449 6/26/2022
2.7.12 445 6/24/2022
2.7.11 423 6/24/2022
2.7.10 409 6/17/2022
2.7.9 421 6/16/2022
2.7.8 445 6/8/2022
2.7.7 402 5/27/2022
2.7.6 448 2/27/2022
2.7.5 433 2/24/2022
2.7.4 444 1/31/2022
2.7.3 288 12/22/2021
2.7.2 285 12/18/2021
2.7.1 279 12/17/2021
2.7.0 295 12/16/2021
2.6.2 511 12/9/2021
2.6.1 305 11/30/2021
2.6.0 288 11/28/2021
2.5.3 298 11/27/2021
2.5.2 2,039 11/26/2021
2.5.0 2,248 11/26/2021
2.4.2 3,166 11/25/2021
2.4.1 2,612 11/25/2021
2.4.0 308 11/23/2021
2.3.0 321 11/22/2021
2.2.5 1,182 11/20/2021
2.2.4 774 11/19/2021
2.2.3 372 11/18/2021
2.2.2 321 11/18/2021
2.2.1 351 11/17/2021
2.2.0 302 11/14/2021
2.1.1 388 11/7/2021
2.1.0 347 11/1/2021
2.0.3 361 10/31/2021
2.0.2 367 10/31/2021
2.0.1 372 10/31/2021
2.0.0 345 10/31/2021
1.2.1 427 10/30/2021
1.2.0 345 10/27/2021
1.1.0 337 9/17/2021
1.0.12 363 9/16/2021
1.0.11 346 4/29/2021
1.0.10 316 4/27/2021
1.0.9 336 4/27/2021
1.0.8 346 4/11/2021
1.0.7 343 4/10/2021
1.0.6 356 4/10/2021
1.0.5 355 4/2/2021
1.0.4 352 3/30/2021