Meziantou.Framework.CodeDom
6.0.2
Prefix Reserved
dotnet add package Meziantou.Framework.CodeDom --version 6.0.2
NuGet\Install-Package Meziantou.Framework.CodeDom -Version 6.0.2
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="6.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Meziantou.Framework.CodeDom" Version="6.0.2" />
<PackageReference Include="Meziantou.Framework.CodeDom" />
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 6.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Meziantou.Framework.CodeDom, 6.0.2"
#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@6.0.2
#: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=6.0.2
#tool nuget:?package=Meziantou.Framework.CodeDom&version=6.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. net11.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- No dependencies.
-
net11.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 |
|---|---|---|
| 6.0.2 | 82 | 9/6/2026 |
| 6.0.1 | 101 | 8/16/2026 |
| 6.0.0 | 125 | 7/5/2026 |
| 5.0.2 | 123 | 6/13/2026 |
| 5.0.1 | 129 | 5/23/2026 |
| 5.0.0 | 118 | 5/6/2026 |
| 4.0.10 | 195 | 10/19/2025 |
| 4.0.9 | 252 | 9/3/2025 |
| 4.0.8 | 227 | 11/17/2024 |
| 4.0.7 | 403 | 11/15/2023 |
| 4.0.6 | 2,175 | 12/24/2022 |
| 4.0.5 | 898 | 7/14/2021 |
| 4.0.4 | 638 | 4/22/2021 |
| 4.0.3 | 607 | 2/17/2021 |
| 4.0.2 | 658 | 2/4/2021 |
| 4.0.1 | 634 | 2/1/2021 |
| 4.0.0 | 1,535 | 9/24/2020 |
| 3.2.9 | 881 | 8/23/2020 |
| 3.2.8 | 738 | 8/23/2020 |
| 3.2.7 | 706 | 8/23/2020 |
Loading failed