FormatWith 2.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package FormatWith --version 2.0.3
NuGet\Install-Package FormatWith -Version 2.0.3
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="FormatWith" Version="2.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FormatWith --version 2.0.3
#r "nuget: FormatWith, 2.0.3"
#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 FormatWith as a Cake Addin
#addin nuget:?package=FormatWith&version=2.0.3

// Install FormatWith as a Cake Tool
#tool nuget:?package=FormatWith&version=2.0.3

Provides named string formatting via the string extension .FormatWith(). Formats strings with named parameters based upon an input lookup dictionary or object.

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.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on FormatWith:

Package Downloads
PegasusInfrastructure

Package Description

TTRPG.Engine

Manage game algorithms in serializable structures. https://github.com/timjen3/ttrpg-engine/blob/main/Readme.md

Pegasus_Infrastructure

Package Description

HashiVaultCs

A .NET library for interacting with HashiCorp Vault. Features are minimal, please read documentation.

Pantry.Mediator.AspNetCore

Repositories for Root Aggregates.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on FormatWith:

Repository Stars
enkodellc/blazorboilerplate
Blazor Boilerplate / Starter Template with MudBlazor
Version Downloads Last updated
3.0.1 431,256 8/25/2020
3.0.0 6,095 8/24/2020
2.2.1 203,696 12/6/2017
2.2.0 82,515 10/18/2017
2.1.0 4,837 9/14/2017
2.0.3 2,171 8/21/2017
2.0.0-alpha 801 8/18/2017
1.4.1 23,675 7/18/2016
1.4.0 4,448 6/28/2016
1.3.1 4,791 6/2/2016
1.3.0 1,402 6/2/2016
1.2.1 1,346 5/11/2016
1.1.0 1,710 3/24/2016
1.0.0 1,767 3/22/2016

- Project now targets .NET Standard 2.0 (available on .NET Core 2.0, .NET Framework 4.6.1, and others)
- Removed seldom used custom formatter API, simplified internal code.
- Increased performance with simpler code, tokenizing text as structs
- Added an extra set of short overloads to the main extension methods, to make them easier to use from languages that don't support default parameters. (Previously, all optional method parameters would be required for the long overload).
- Added support for FormattableString. Using the FormattableWith() method, the format string can be parsed into a FormattableString for custom formatting later.