DotStuff 0.0.0-pre.1
See the version list below for details.
dotnet add package DotStuff --version 0.0.0-pre.1
NuGet\Install-Package DotStuff -Version 0.0.0-pre.1
<PackageReference Include="DotStuff" Version="0.0.0-pre.1"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add DotStuff --version 0.0.0-pre.1
#r "nuget: DotStuff, 0.0.0-pre.1"
// Install DotStuff as a Cake Addin #addin nuget:?package=DotStuff&version=0.0.0-pre.1&prerelease // Install DotStuff as a Cake Tool #tool nuget:?package=DotStuff&version=0.0.0-pre.1&prerelease
About
DotStuff is a source-only NuGet package that adds few helpful extensions for method chaining in C#.
Source-only here means that DotStuff adds a single, hidden C# file to your project. There is no extra DLL to ship. For libraries, there is no extra dependency that referencing projects see. This is ideal for a micro-package like DotStuff that consists of a single file. The file itself is written carefully to avoid conflicts with existing code.
Status
Tested: 100% coverage by automated tests.
Documented: IntelliSense on everything. Examples below.
Installation
Install this NuGet Package in your project.
Usage
// Right assign
foo.AssignTo(out bar) // => bar = foo;
// Right coalesce
foo.CoalesceTo(ref bar) // => bar ??= foo;
// Tap
foo.Tap(action); // { action(foo); return foo; }
foo.Tap(action, x) // { action(foo, x); return foo; }
foo.Tap(action, x, y) // { action(foo, x, y); return foo; }
// ... up to 3 extra arguments
// Apply
foo.Apply(function); // => function(foo);
foo.Apply(function, x) // => function(foo, x);
foo.Apply(function, x, y) // => function(foo, x, y);
// ... up to 3 extra arguments
Options
DotStuff responds to the following preprocessor symbols.
DOTSTUFF_DISABLE
Define this symbol to disable DotStuff completely.
DOTSTUFF_ENABLE_CODE_COVERAGE
Define this symbol to include the DotStuff extension methods in code coverage. By default, the extension methods are excluded.
DOTSTUFF_HAS_CSHARP_8_OR_GREATER
If this symbol is defined, DotStuff uses C# 8.0 features, such as the
??=
operator required forCoalesceTo
.This symbol is defined by default for target frameworks that use C# 8.0 or later by default: .NET 5.0, .NET Core 3.0, .NET Standard 2.1, and later.
Define this symbol to use C# 8.0 features on older target frameworks. Make sure to configure the language version of the project to C# 8.0 or later.
DOTSTUFF_HAS_NULLABLE
If this symbol is defined, DotStuff uses nullability attributes.
This symbol is defined by default for target frameworks that provide these attributes: .NET 5.0, .NET Core 3.0, .NET Standard 2.1, and later.
Define this symbol to use nullability attributes on older target frameworks. Some source of those attributes will be required. One easy option is to use Manuel Römer's Nullable package.
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 is compatible. 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.0 is compatible. netstandard1.1 was computed. netstandard1.2 was computed. netstandard1.3 was computed. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net20 is compatible. net35 was computed. net40 was computed. net403 was computed. net45 was computed. 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. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wp8 was computed. wp81 was computed. wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.0-pre.2 | 74 | 4/23/2024 |
0.0.0-pre.1 | 69 | 4/20/2024 |
0.0.0-pre.0 | 48 | 4/20/2024 |