DeepCloneGenerator.Generator 0.7.6

dotnet add package DeepCloneGenerator.Generator --version 0.7.6
                    
NuGet\Install-Package DeepCloneGenerator.Generator -Version 0.7.6
                    
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.Generator" Version="0.7.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DeepCloneGenerator.Generator" Version="0.7.6" />
                    
Directory.Packages.props
<PackageReference Include="DeepCloneGenerator.Generator" />
                    
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 DeepCloneGenerator.Generator --version 0.7.6
                    
#r "nuget: DeepCloneGenerator.Generator, 0.7.6"
                    
#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.Generator@0.7.6
                    
#: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.Generator&version=0.7.6
                    
Install as a Cake Addin
#tool nuget:?package=DeepCloneGenerator.Generator&version=0.7.6
                    
Install as a Cake Tool

Deep clone generator

Deep clone generator is a library that utilizes source generator to generate a DeepClone() method which clones classes by its values.

NuGet Version GitHub Actions Workflow Status GitHub issues

Usage

  1. Install package using dotnet add DeepCloneGenerator
  2. Add the [GenerateDeepClone] attribute on top of a partial class that you want to generate a DeepClone() method for
  3. 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 (like List<T> and HashSet<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 (like Dictionary<T, V>)
  • Any struct
  • Any record

Known limitations

  • 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

Future plans

  • Add analyzers which will inform of known limitations as warnings when DeepClone functionality is not working as intended

Requests

There are many many more scenarios in which people can structure classes/structs. I intend to cover them all but my imagination has his limits.

Feel free to submit issues when one of the more exotic situations are not supported and I'll see if the library can support it.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on DeepCloneGenerator.Generator:

Package Downloads
DeepCloneGenerator

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.7.6 328 1/11/2024
0.7.5 248 1/4/2024
0.7.4 236 1/4/2024
0.7.3 226 1/3/2024
0.7.2 239 1/3/2024
0.7.0 224 1/3/2024
0.6.5 251 1/3/2024
0.6.4 252 1/3/2024
0.6.3 277 1/2/2024
0.6.2 228 1/2/2024
0.6.0 405 1/2/2024