Arebis.ReMapper 0.8.3

dotnet add package Arebis.ReMapper --version 0.8.3
NuGet\Install-Package Arebis.ReMapper -Version 0.8.3
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="Arebis.ReMapper" Version="0.8.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Arebis.ReMapper --version 0.8.3
#r "nuget: Arebis.ReMapper, 0.8.3"
#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 Arebis.ReMapper as a Cake Addin
#addin nuget:?package=Arebis.ReMapper&version=0.8.3

// Install Arebis.ReMapper as a Cake Tool
#tool nuget:?package=Arebis.ReMapper&version=0.8.3

Arebis ReMapper

This nuget is a C# Source Generator generating source code consisting of:

  • Contract types or Data Transfer Object types.
  • Mapper code to convert domain objects into contract objects.
  • Reverse mapper code to convert contract objects back into domain objects.

Getting Started

  1. Install the Arebis.ReMapper nuget on the project where you want to generate contract types and/or mapper types. You can install the nuget on different projects.
  2. Create a ReMapper.xml file (the name does not matter, as long as it has a .xml extension).
  3. Set the Build Action property of the ReMapper.xml file to C# analyzer additional file.
  4. Write your mapping definition in the file.

Here is an example of a ReMapper.xml file:

<?xml version="1.0" encoding="utf-8" ?>
<ReMapper>
	<Namespace Name=".Models" For="Example.WebShop.Domain">
		<Using CopyAttributes="true">System.ComponentModel.DataAnnotations</Using>
		<Types>
			<Documentation/>
		</Types>
		<Mapper/>
		<ReverseMapper CreateMethod="new" Conservative="true" />
		<Type Name="CustomerModel" For="Customer" ReverseMap="CU">
			<Property Name="Id" IsKey="true" />
			<Property Name="Name" />
			<Property Name="Address" />
		</Type>
		<Type Name="InvoiceModel" For="Invoice" ReverseMap="CU">
			<Property Name="Id" IsKey="true" />
			<Property Name="Date" />
			<Property Name="Customer" Type="CustomerModel" />
		</Type>
	</Namespace>
</ReMapper>

The Arebis.ReMapper.X.Y.Z.nupkg file contains a ReMapper.xsd file to help you defining the mappings. However you will have to manually extract the .xsd file as it is not installed in your project by default.

To generate persistent code files, add the following line to your .csproj file:

<EmitCompilerGeneratedFiles>True</EmitCompilerGeneratedFiles>

For more about Source Generators in general, see: https://learn.microsoft.com/en-us/dotnet/csharp/roslyn-sdk/source-generators-overview

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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.8.3 150 3/25/2024
0.8.2 111 3/22/2024
0.8.1 98 3/21/2024
0.8.0 136 3/19/2024
0.7.0 154 2/19/2024
0.6.3 133 1/22/2024
0.6.2 162 12/20/2023
0.6.1 281 10/19/2023
0.6.0 265 2/9/2023
0.5.0 247 1/31/2023
0.4.0 271 1/30/2023
0.3.0 279 1/23/2023
0.1.0 269 11/15/2022