Morris.Moxy 1.10.0

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

// Install Morris.Moxy as a Cake Tool
#tool nuget:?package=Morris.Moxy&version=1.10.0

Morris.Moxy

alternate text is missing from this package README image

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

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
1.10.0 236 4/15/2024
1.9.0 143 4/14/2024
1.8.0 715 9/22/2023
1.8.0-Beta3 120 9/22/2023
1.8.0-Beta2 171 9/22/2023
1.8.0-Beta1 148 9/18/2023
1.7.0 157 9/5/2023
1.6.0 164 8/24/2023
1.6.0-RC1 149 8/23/2023
1.6.0-Beta2 163 8/20/2023
1.6.0-Beta1 305 5/25/2023
1.5.0 268 5/23/2023
1.5.0-Beta1 180 5/23/2023
1.4.0 128 5/23/2023
1.3.1 124 5/23/2023
1.2.0 334 3/28/2023
1.1.0 269 2/28/2023
1.0.0 233 2/27/2023