RhoMicro.CodeAnalysis.CopyToGenerator 20.0.0

dotnet add package RhoMicro.CodeAnalysis.CopyToGenerator --version 20.0.0
                    
NuGet\Install-Package RhoMicro.CodeAnalysis.CopyToGenerator -Version 20.0.0
                    
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="RhoMicro.CodeAnalysis.CopyToGenerator" Version="20.0.0">
  <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="RhoMicro.CodeAnalysis.CopyToGenerator" Version="20.0.0" />
                    
Directory.Packages.props
<PackageReference Include="RhoMicro.CodeAnalysis.CopyToGenerator">
  <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 RhoMicro.CodeAnalysis.CopyToGenerator --version 20.0.0
                    
#r "nuget: RhoMicro.CodeAnalysis.CopyToGenerator, 20.0.0"
                    
#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=RhoMicro.CodeAnalysis.CopyToGenerator&version=20.0.0
                    
Install RhoMicro.CodeAnalysis.CopyToGenerator as a Cake Addin
#tool nuget:?package=RhoMicro.CodeAnalysis.CopyToGenerator&version=20.0.0
                    
Install RhoMicro.CodeAnalysis.CopyToGenerator as a Cake Tool

RhoMicro.CopyTo

This source code generator for C# generates a CopyTo method for copying the contents of public get/set properties from one instance to another.

How To Use

Annotate your type with the GenerateCopyTo Attribute found in the RhoMicro.CodeAnalysis.CopyToGenerator namespace:

using RhoMicro.GenerateCopyToGenerator;

[GenerateCopyTo]
partial class MyType
{
    public String Prop1 { get; set; }
    public Int32 Prop2 { get; set; }
}

The generator will generate a partial implementation like this:

partial class MyType
{
    public void CopyTo(MyType target)
    {
        target.Prop1 = Prop1;
        target.Prop2 = Prop2;
    }
}

Features And Restrictions

The generator is able to copy:

  • other copyable types
  • instances of List<T>, IEnumerable<T>, ICollection<T>, IList<T>, IReadOnlyCollection<T> or IReadOnlyList<T> whose item type is also copyable
  • using assignment for all other properties

The generator is limited to:

  • public read/write properties
  • reference types
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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
20.0.0 447 3/26/2025
19.5.0 466 3/25/2025
19.4.0 129 3/17/2025
19.3.0 133 3/17/2025
19.2.0 130 3/17/2025
19.1.0 158 3/9/2025
19.0.2 153 3/9/2025
19.0.1 116 3/8/2025
19.0.0 136 3/8/2025
18.0.3 85 3/2/2025
18.0.2 83 3/2/2025
18.0.1 88 3/2/2025
17.1.3 89 1/24/2025
17.1.2 96 12/30/2024
17.1.1 83 12/30/2024
17.1.0 95 12/30/2024
17.0.2 92 12/24/2024
16.1.2 89 12/22/2024
16.1.1 93 12/21/2024
16.1.0 89 12/20/2024
16.0.4 91 12/18/2024
16.0.3 98 12/18/2024
16.0.0 85 12/18/2024
15.3.4 92 12/7/2024
15.3.3 95 12/7/2024
15.3.2 99 12/7/2024
15.3.1 108 12/7/2024
15.3.0 110 12/6/2024
15.2.4 97 12/6/2024
15.2.3 98 12/6/2024
15.1.7 133 7/15/2024
15.1.6 108 6/11/2024
15.1.5 170 3/26/2024
15.1.4 146 3/26/2024
15.1.3 162 3/11/2024
15.1.2 147 3/8/2024
15.1.1 184 3/4/2024
15.1.0 131 2/28/2024
15.0.1 182 2/22/2024
15.0.0 177 2/20/2024
14.0.5 141 2/19/2024
14.0.4 164 2/19/2024
14.0.3 143 2/19/2024
14.0.2 162 2/15/2024
14.0.0 154 2/15/2024
14.0.0-alpha.30 64 2/15/2024
14.0.0-alpha.29 63 2/15/2024
14.0.0-alpha.28 63 2/15/2024
14.0.0-alpha.27 61 2/15/2024
14.0.0-alpha.26 73 2/15/2024
14.0.0-alpha.25 65 2/15/2024
14.0.0-alpha.24 76 2/15/2024
14.0.0-alpha.22 67 2/15/2024
14.0.0-alpha.20 69 2/15/2024
8.0.3 286 12/11/2023
8.0.2 188 12/11/2023
8.0.0 166 12/11/2023
2.0.0 188 11/29/2023