DeepCloneGenerator 0.1.24-pullrequest0001-0004
This is a prerelease version of DeepCloneGenerator.
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 DeepCloneGenerator --version 0.1.24-pullrequest0001-0004
NuGet\Install-Package DeepCloneGenerator -Version 0.1.24-pullrequest0001-0004
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="DeepCloneGenerator" Version="0.1.24-pullrequest0001-0004" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DeepCloneGenerator" Version="0.1.24-pullrequest0001-0004" />
<PackageReference Include="DeepCloneGenerator" />
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 DeepCloneGenerator --version 0.1.24-pullrequest0001-0004
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DeepCloneGenerator, 0.1.24-pullrequest0001-0004"
#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.
#:package DeepCloneGenerator@0.1.24-pullrequest0001-0004
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DeepCloneGenerator&version=0.1.24-pullrequest0001-0004&prerelease
#tool nuget:?package=DeepCloneGenerator&version=0.1.24-pullrequest0001-0004&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Deep clone generator
Deep clone generator is a library that utilizes source generator to generate a DeepClone()
method which clones classes
by its values.
Usage
- Install package using
dotnet add DeepCloneGenerator
- Add the
[GenerateDeepClone]
attribute on top of apartial class
that you want to generate aDeepClone()
method for - Done! You now have a
DeepClone()
method
Supported type members
The following type members are supported:
- Fields
- required Fields
- Properties
- required Properties
Supported types
The following types are supported for deep cloning:
- Any class annotated with
[GenerateDeepClone]
- Any built-in value type
- Any concrete class which implements
ICollection<T>
and has a parameterless ctor (likeList<T>
andHashSet<T>
) - Any
IEnumerable<T>
(the clone will have a List<T> with the values of the original cloned) - Any concrete class which implements
IDictionary<T, V>
and has a parameterless ctor (likeDictionary<T, V>
) - Any struct with only value types in it (because that works by default in C#)
Known limitations
- Records are currently not supported
- Structs are currently not supported (they are cloned when part of a class, but not deeply cloned, so if your struct only contains value types it will work)
- When collections are made with certain characteristics, those characteristics are currently lost (e.g.: an EqualityComparer for a Dictionary)
- Classes with primary constructors are not yet supported
- Classes get a
ISourceGeneratedCloneable<TSelf>
interface when they are targeted by the source generator. This interface can be referenced from within the assembly, but outside of the assembly you cannot reference the interface ( each assembly has its ownISourceGeneratedCloneable<TSelf>
interface definition thus they do not match.)
Future plans
- Add analyzers which will inform of known limitations as warnings when DeepClone functionality is not working as intended
There are no supported framework assets in this package.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.CodeAnalysis.CSharp (>= 4.3.0)
- Microsoft.CodeAnalysis.CSharp.Workspaces (>= 4.3.0)
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.7.6 | 200 | 1/11/2024 |
0.7.5 | 156 | 1/4/2024 |
0.7.4 | 128 | 1/4/2024 |
0.7.3 | 137 | 1/3/2024 |
0.7.2 | 126 | 1/3/2024 |
0.7.0 | 144 | 1/3/2024 |
0.6.5 | 131 | 1/3/2024 |
0.6.4 | 122 | 1/3/2024 |
0.6.3 | 141 | 1/2/2024 |
0.6.2 | 133 | 1/2/2024 |
0.6.0 | 127 | 1/2/2024 |
0.5.1 | 214 | 1/2/2024 |
0.5.0 | 197 | 1/2/2024 |
0.4.2 | 142 | 12/31/2023 |
0.4.1 | 183 | 12/31/2023 |
0.4.0 | 198 | 12/31/2023 |
0.3.1 | 194 | 12/29/2023 |
0.3.0 | 161 | 12/29/2023 |
0.2.1 | 179 | 12/28/2023 |
0.2.0 | 192 | 12/28/2023 |
0.1.27 | 158 | 12/28/2023 |
0.1.26 | 229 | 12/27/2023 |
0.1.25 | 165 | 12/27/2023 |
0.1.24 | 157 | 12/24/2023 |
0.1.24-pullrequest0001-0004 | 197 | 12/24/2023 |
0.1.23 | 180 | 12/24/2023 |