FluentBuilder 0.0.11-preview-01

This is a prerelease version of FluentBuilder.
There is a newer version of this package available.
See the version list below for details.
dotnet add package FluentBuilder --version 0.0.11-preview-01
                    
NuGet\Install-Package FluentBuilder -Version 0.0.11-preview-01
                    
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="FluentBuilder" Version="0.0.11-preview-01">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FluentBuilder" Version="0.0.11-preview-01" />
                    
Directory.Packages.props
<PackageReference Include="FluentBuilder">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FluentBuilder --version 0.0.11-preview-01
                    
#r "nuget: FluentBuilder, 0.0.11-preview-01"
                    
#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.
#addin nuget:?package=FluentBuilder&version=0.0.11-preview-01&prerelease
                    
Install FluentBuilder as a Cake Addin
#tool nuget:?package=FluentBuilder&version=0.0.11-preview-01&prerelease
                    
Install FluentBuilder as a Cake Tool

Usage

Annotate

Annotate a class with [FluentBuilder.AutoGenerateBuilder] to indicate that a FluentBuilder should be generated for this class:

[FluentBuilder.AutoGenerateBuilder]
public class User
{
    public string FirstName { get; set; }

    public string LastName { get; set; }

    public DateTime? Date { get; set; }
}

Use FluentBuilder

using System;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            var user = new FluentBuilder.UserBuilder()
                .WithFirstName("Test")
                .WithLastName("User")
                .Build();

            Console.WriteLine($"{user.FirstName} {user.LastName}");
        }
    }
}
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

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

Repository Stars
wiremock/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality.
Version Downloads Last updated
0.10.0.1 0 6/13/2025
0.10.0 13,401 10/19/2024
0.10.0-preview-01 66 10/7/2024
0.9.2 5,414 8/30/2024
0.9.1 381 8/24/2024
0.9.0 35,301 4/8/2023
0.9.0-preview-01 146 4/6/2023
0.8.0 456 4/3/2023
0.7.1 441 3/14/2023
0.7.1-preview-02 205 3/2/2023
0.7.1-preview-01 196 2/25/2023
0.7.0 9,834 9/20/2022
0.7.0-preview-01 175 9/16/2022
0.6.0 496 8/20/2022
0.5.1 1,922 7/28/2022
0.5.0 515 7/13/2022
0.4.9 4,693 6/25/2022
0.4.8 466 6/21/2022
0.4.7 454 6/4/2022
0.4.6 541 5/20/2022
0.4.5 468 5/16/2022
0.4.4 1,089 4/27/2022
0.4.2 510 4/3/2022
0.4.1 993 2/18/2022
0.4.0 460 2/18/2022
0.3.3 479 2/16/2022
0.3.2 480 2/16/2022
0.3.1 469 2/14/2022
0.3.0 463 2/12/2022
0.2.5 475 2/8/2022
0.2.4 528 2/6/2022
0.2.3 482 2/1/2022
0.2.2 485 1/31/2022
0.2.1 495 1/30/2022
0.2.0 553 1/30/2022 0.2.0 is deprecated because it has critical bugs.
0.1.2 476 1/20/2022
0.1.1 465 1/15/2022
0.1.0 473 1/13/2022
0.0.11 1,463 8/10/2021
0.0.11-preview-01 253 8/10/2021
0.0.10 354 8/8/2021
0.0.10-preview-03 229 8/8/2021
0.0.10-preview-02 262 8/7/2021
0.0.10-preview-01 261 8/7/2021
0.0.9 461 8/7/2021
0.0.8 367 8/6/2021
0.0.7 497 8/5/2021
0.0.6 355 8/5/2021
0.0.5 408 8/5/2021
0.0.4 13,319 7/21/2021
0.0.3 368 7/19/2021
0.0.2 361 7/19/2021
0.0.1 410 7/18/2021

# 0.0.10 (08 August 2021)

The full release notes can be found here: https://github.com/StefH/FluentBuilder/blob/main/ReleaseNotes.md