Meziantou.Framework.CodeDom 5.0.1

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

Meziantou.Framework.CodeDom

Meziantou.Framework.CodeDom is a modern replacement for .NET CodeDom. The built-in CodeDom APIs have not evolved for years and do not support newer C# syntax, while this library lets you generate modern C# code using a strongly-typed object model.

Usage

using Meziantou.Framework.CodeDom;

var unit = new CompilationUnit();
unit.AddUsing("System");

var ns = unit.AddNamespace("Demo");
var type = ns.AddType(new ClassDeclaration("Greeter")
{
    Modifiers = Modifiers.Public,
});

var method = type.AddMember(new MethodDeclaration("GetMessage")
{
    Modifiers = Modifiers.Public | Modifiers.Static,
    ReturnType = typeof(string),
});

var nameArgument = method.AddArgument("name", typeof(string));
method.Statements = new ReturnStatement(Expression.Add("Hello ", nameArgument, "!"));

var generatedCode = unit.ToCsharpString();
Console.WriteLine(generatedCode);

Generated code:

using System;

namespace Demo
{
    public class Greeter
    {
        public static string GetMessage(string name)
        {
            return (("Hello " + name) + "!");
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.
  • net9.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
5.0.1 97 5/23/2026
5.0.0 91 5/6/2026
4.0.10 172 10/19/2025
4.0.9 233 9/3/2025
4.0.8 206 11/17/2024
4.0.7 385 11/15/2023
4.0.6 2,157 12/24/2022
4.0.5 889 7/14/2021
4.0.4 623 4/22/2021
4.0.3 591 2/17/2021
4.0.2 643 2/4/2021
4.0.1 616 2/1/2021
4.0.0 1,517 9/24/2020
3.2.9 864 8/23/2020
3.2.8 719 8/23/2020
3.2.7 688 8/23/2020
3.2.6 704 8/21/2020
3.2.5 703 8/21/2020
3.2.4 722 8/21/2020
3.2.3 721 8/21/2020
Loading failed