SourceKit.Generators.Builder
1.1.13
Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package SourceKit.Generators.Builder --version 1.1.13
NuGet\Install-Package SourceKit.Generators.Builder -Version 1.1.13
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="SourceKit.Generators.Builder" Version="1.1.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SourceKit.Generators.Builder --version 1.1.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: SourceKit.Generators.Builder, 1.1.13"
#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 SourceKit.Generators.Builder as a Cake Addin #addin nuget:?package=SourceKit.Generators.Builder&version=1.1.13 // Install SourceKit.Generators.Builder as a Cake Tool #tool nuget:?package=SourceKit.Generators.Builder&version=1.1.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SourceKit.Generators.Builder
Use [GenerateBuilder]
attribute to generate builder.
- Only
record
orrecord struct
types are supported - Builder is a nested class
Builder
- For collection properties field of type
List<>
will be generated - For collection properties, methods
With{PropName}
andWith{PropName}s
will be generated - If collection element type is
IComparable
orIComparable<TSelf>
the.Distinct
LINQ method would be called on.Build
method - If collection property is
List<>
orHashSet<>
then it will be converted to this collection respectively, otherwise,ToArray
method will be called
You can use SomeType.Build()
static method to shorthand create type instance using generated builder
[GenerateBuilder]
public partial record SomeQuery(IReadOnlyCollection<Guid> Ids, int Count);
...
var query = SomeQuery.Build(x => x.WithCount(2).WithId(Guid.NewGuid());
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- SourceKit.Generators.Builder.Annotations (>= 1.1.13)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SourceKit.Generators.Builder:
Package | Downloads |
---|---|
Itmo.Dev.Platform.BackgroundTasks
Package Description |
|
Itmo.Dev.Platform.MessagePersistence
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.2.49 | 43 | 1/13/2025 |
1.2.48 | 43 | 1/13/2025 |
1.2.47 | 47 | 1/12/2025 |
1.2.46 | 46 | 1/12/2025 |
1.2.45 | 175 | 12/15/2024 |
1.2.44 | 92 | 12/15/2024 |
1.2.43 | 83 | 12/15/2024 |
1.2.42 | 79 | 12/15/2024 |
1.2.41 | 85 | 12/15/2024 |
1.2.40 | 83 | 12/15/2024 |
1.2.37 | 91 | 12/14/2024 |
1.2.36 | 448 | 11/18/2024 |
1.2.35 | 160 | 10/11/2024 |
1.2.34 | 225 | 5/4/2024 |
1.2.33 | 104 | 5/1/2024 |
1.2.31 | 131 | 4/27/2024 |
1.2.30 | 187 | 4/6/2024 |
1.1.29 | 168 | 4/3/2024 |
1.1.27 | 127 | 4/3/2024 |
1.1.26 | 147 | 4/3/2024 |
1.1.24 | 3,356 | 12/19/2023 |
1.1.23 | 236 | 12/6/2023 |
1.1.22 | 386 | 11/22/2023 |
1.1.21 | 644 | 11/11/2023 |
1.1.20 | 110 | 11/11/2023 |
1.1.19 | 181 | 11/11/2023 |
1.1.18 | 139 | 11/11/2023 |
1.1.16 | 120 | 11/11/2023 |
1.1.15 | 130 | 11/11/2023 |
1.1.14 | 145 | 11/11/2023 |
1.1.13 | 171 | 11/11/2023 |
1.1.11 | 132 | 11/11/2023 |
1.1.10 | 226 | 9/16/2023 |
1.1.4 | 269 | 9/10/2023 |
1.0.4 | 1,296 | 6/11/2023 |
1.0.3 | 189 | 6/10/2023 |
1.0.2 | 151 | 6/10/2023 |
1.0.1 | 383 | 5/14/2023 |
1.0.0 | 200 | 5/13/2023 |
Fixed property type usings generation