Skip to main content

MorrisMoxy by Peter Morris

Nuget / site data

Nuget GitHub last commit GitHub Repo stars

Details

Info

info

Name: MorrisMoxy

A C# mix-in code generator

Author: Peter Morris

NuGet: https://www.nuget.org/packages/Morris.Moxy/

You can find more details at https://github.com/mrpmorris/Morris.Moxy

Source : https://github.com/mrpmorris/Morris.Moxy

Original Readme

note

Morris.Moxy

Morris.Moxy is a code mix-in code generator for Microsoft .NET

NuGet version (PackageName)

Overview

Moxy allows you to write code templates at development time, which are then processed as Roslyn code-generators in real-time, and the results mixed-in to target classes.

Goal

  1. Write your code patterns once.
namespace {{ moxy.Class.Namespace }}
{
partial class {{ moxy.Class.Name}}
{
public string FullName => $"{Salutation} {GivenName} {FamilyName}"
public string Salutation { get; set; }
public string GivenName { get; set; }
public string FamilyName { get; set; }
}
}
  1. Moxy automatically creates a .Net attribute for each pattern, which you can then apply to multiple targets in your source code.
[PersonName]
public partial class Contact
{
}
  1. The Moxy Roslyn code-generator executes the code pattern to generate additional C# code
namespace MyApp
{
partial class Contact
{
public string FullName => $"{Salutation} {GivenName} {FamilyName}"
public string Salutation { get; set; }
public string GivenName { get; set; }
public string FamilyName { get; set; }
}
}
  1. Moxy is FAST. Changes to the template should reflect in the code in real-time. No need to recompile C# source code between changes.

Getting started

The easiest way to get started is to read the documentation. Which includes tutorials that are numbered in an order recommended for learning Morris.Moxy. Each will have a README file that explains how the tutorial was created.

Installation

You can download the latest release / pre-release NuGet packages from the official Morris.Moxy Nuget page

Release notes

See the Releases page for release history.

Licence

MIT

About

note

Generate C# code for classes from template using attributes

How to use

Example ( source csproj, source files )

This is the CSharp Project that references MorrisMoxy

<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GX</CompilerGeneratedFilesOutputPath>
</PropertyGroup>


<ItemGroup>
<None Remove="mixin\IDName.mixin" />
</ItemGroup>

<ItemGroup>
<AdditionalFiles Include="mixin\IDName.mixin" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Morris.Moxy" Version="1.5.0" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>

</Project>

Generated Files

Those are taken from $(BaseIntermediateOutputPath)\GX

// Generated from mixin\IDName.mixin at 2024-02-04 18:27:30 UTC
namespace MorrisMoxyDemo
{

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = true)]
internal class IDNameAttribute : Attribute
{
}
}


Usefull

Download Example (.NET C# )

Share MorrisMoxy

https://ignatandrei.github.io/RSCG_Examples/v2/docs/MorrisMoxy

In the same category (Templating) - 6 other generators

Gobie

InterceptorTemplate

Microsoft.NET.Sdk.Razor.SourceGenerators

RazorBlade

RSCG_Templating

spreadcheetah