Metalama.Framework 2025.0.7-rc

Prefix Reserved
This is a prerelease version of Metalama.Framework.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Metalama.Framework --version 2025.0.7-rc
                    
NuGet\Install-Package Metalama.Framework -Version 2025.0.7-rc
                    
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="Metalama.Framework" Version="2025.0.7-rc" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Metalama.Framework" Version="2025.0.7-rc" />
                    
Directory.Packages.props
<PackageReference Include="Metalama.Framework" />
                    
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 Metalama.Framework --version 2025.0.7-rc
                    
#r "nuget: Metalama.Framework, 2025.0.7-rc"
                    
#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.
#addin nuget:?package=Metalama.Framework&version=2025.0.7-rc&prerelease
                    
Install Metalama.Framework as a Cake Addin
#tool nuget:?package=Metalama.Framework&version=2025.0.7-rc&prerelease
                    
Install Metalama.Framework as a Cake Tool

Metalama Logo

Metalama is a Roslyn-based framework for on-the-fly code generation and validation in C#.

Using Metalama, you can:

  • Reduce boilerplate by generating it dynamically during compilation. Your source code remains crystal-clear.
  • Verify code in real time against architecture, patterns, and conventions. No need to wait for code reviews.
  • Provide coding assistance to your team with customized feedback and suggestions.
  • Do it by your rules. Automate your own implementation patterns and architecture guidelines.

For more information, see the Metalama website or Metalama documentation.

About this package

The Metalama.Framework package is the principal package of Metalama. Reference this package if you want to use Metalama in your code.

Referencing this package replaces the compiler with Metalama.Compiler, a shallow fork of Roslyn that adds an extension point to allow us to transform the syntax trees. If you need to reference Metalama without replacing the compiler, use the Metalama.Framework.Redist package.

Package Name Description
Metalama.Compiler Metalama Compiler package. Referencing this package directly is not recommended. A fork of Roslyn.
Metalama.Compiler.Sdk Defines APIs for writing source transformers for Metalama.Compiler.
Metalama.Extensions.Architecture Verifies code against architecture rules in Metalama.
Metalama.Extensions.DependencyInjection Allows aspects to consume dependencies from an arbitrary dependency injection framework.
Metalama.Extensions.DependencyInjection.ServiceLocator Locates and pulls dependencies from a global service provider.
Metalama.Extensions.Metrics Exposes code metrics to the code model in Metalama.
Metalama.Extensions.Multicast Emulates PostSharp multicasting within Metalama.
Metalama.Framework The principal package.
Metalama.Framework.Introspection Provides introspection of Metalama aspect classes, instances, and diagnostics.
Metalama.Framework.Redist Redistributable components for Metalama.Framework. Should be installed as a dependency.
Metalama.Framework.RunTime Run-time components for Metalama.Framework. Usually installed as a dependency.
Metalama.Framework.Sdk A tool for custom source code modifying extensions using the Roslyn API.
Metalama.Framework.Workspaces Allows loading solutions and projects, executing Metalama, and introspection of compilation results.
Metalama.Migration Annotated PostSharp API documenting its Metalama equivalent.
Metalama.Patterns.Caching A caching front-end that can be plugged into different backends and helps with building the cache key, coping with special return types, and invalidating the cache.
Metalama.Patterns.Caching.Aspects A set of aspects that simplify the caching: [Cache] to cache a method result as a function of its parameters, [InvalidateCache] to invalidate the cache, or [CacheKey] to mark a cache key.
Metalama.Patterns.Caching.Backend Backend components for Metalama.Patterns.Caching.
Metalama.Patterns.Caching.Backends.Azure Synchronizes the invalidation of distributed Metalama.Patterns.Caching caches over Azure Service Bus.
Metalama.Patterns.Caching.Backends.Redis Redis back-end for Metalama.Patterns.Caching. Implements both caching and cache invalidation over Redis Pub/Sub.
Metalama.Patterns.Contracts Contract-Based Programming (or Design-by-Contract) with custom attributes such as [NotNull] or [Url] thanks to Metalama: pre-conditions, post-conditions and invariants.
Metalama.Patterns.Immutability Represents the concept of Immutable Type so that it can be used by other packages like Metalama.Patterns.Observability.
Metalama.Patterns.Memoization Simple and high-performance caching of properties or parameterless methods with a single [Memo] custom attribute thanks to Metalama.
Metalama.Patterns.Observability Implements the Observable pattern and the INotifyPropertyChanged interface with a single [Observable] attribute thanks to Metalama. Supports both automatic and explicit properties and child objects.
Metalama.Patterns.Xaml Provides custom observability features for XAML applications.
Metalama.Testing.AspectTesting Test framework for Metalama aspects and fabrics.
Metalama.Testing.UnitTesting A package for unit testing compile-time code.
Metalama.Tool Command line tool for registering a license key or accessing configuration settings.
Metalama.Community.AutoCancellationToken A Metalama weaver that automatically adds CancellationToken to your method definitions and your method calls.
Metalama.Community.Costura A Metalama weaver that embeds dependent assemblies as managed resources. A fork of Costura.Fody.
Metalama.Community.Costura.Redist Redistributable components for package Metalama.Community.Costura. Should only be installed as a dependency.
Metalama.Community.Virtuosity A Metalama weaver that makes all methods in a type virtual.

Change log

We maintain a detailed change log on GitHub.

Feedback and support

If you have any feedback regarding Metalama, please open an issue, start a discussion on GitHub, or contact us directly at [email protected].

You can also join our Slack community and ask your technical questions in real time.

Slack

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (29)

Showing the top 5 NuGet packages that depend on Metalama.Framework:

Package Downloads
Metalama.Extensions.DependencyInjection

An official and open-source Metalama extension that allows aspects to consume dependencies from an arbitrary dependency injection framework.

Tofi.Framework.Aspects

Package Description

Metalama.Patterns.Contracts

Contract-Based Programming (or Design-by-Contract) with custom attributes such as [NotNull] or [Url] thanks to Metalama: pre-conditions, post-conditions and invariants.

Metalama.Extensions.Multicast

An official and open-source Metalama extension that emulates PostSharp multicasting.

Metalama.Community.AutoCancellationToken

A Metalama weaver that automatically adds CancellationToken to your method definitions and your method calls.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Metalama.Framework:

Repository Stars
metalama/Metalama
A meta-programming framework for code generation, aspect-oriented programming, and architecture verification of large C# codebases.
Version Downloads Last updated
2025.1.9 177 5/29/2025
2025.1.8 648 5/26/2025
2025.1.7 745 5/22/2025
2025.1.6 1,061 5/15/2025
2025.1.5 2,947 5/2/2025
2025.1.4-rc 981 4/15/2025
2025.1.3-rc 899 4/9/2025
2025.1.2-preview 720 4/1/2025
2025.1.1-preview 664 3/18/2025
2025.0.12 417 5/22/2025
2025.0.11 412 5/2/2025
2025.0.10 5,240 3/31/2025
2025.0.9 6,852 3/7/2025
2025.0.8 33,274 1/6/2025
2025.0.7-rc 1,772 12/6/2024
2025.0.6-rc 2,713 11/15/2024
2025.0.5-preview 2,104 11/8/2024
2025.0.4-preview 442 10/31/2024
2025.0.3-preview 725 10/25/2024
2025.0.2-preview 537 10/24/2024
2025.0.1-preview 488 10/14/2024
2024.2.32 1,316 3/7/2025
2024.2.31 5,537 12/6/2024
2024.2.30 9,284 11/15/2024
2024.2.29 3,355 10/31/2024
2024.2.28 1,090 10/25/2024
2024.2.27 748 10/24/2024
2024.2.26 15,468 10/14/2024
2024.2.25 3,489 10/2/2024
2024.2.24 27,683 9/10/2024
2024.2.23 12,739 8/30/2024
2024.2.22 911 8/29/2024
2024.2.21 7,783 8/28/2024
2024.2.20 18,223 8/15/2024
2024.2.19 5,996 8/1/2024
2024.2.18 1,080 7/29/2024
2024.2.17-rc 618 7/22/2024
2024.2.16-rc 3,907 7/18/2024
2024.2.15-rc 727 7/12/2024
2024.2.14-rc 3,621 7/8/2024
2024.2.13-rc 741 7/2/2024
2024.2.12-preview 868 6/28/2024
2024.2.11-preview 722 6/26/2024
2024.2.10-preview 752 6/20/2024
2024.2.9-preview 864 6/11/2024
2024.2.8-preview 667 6/6/2024
2024.2.7-preview 743 5/30/2024
2024.2.6-preview 772 5/25/2024
2024.2.5-preview 839 5/6/2024
2024.2.4-preview 717 5/4/2024
2024.2.3-preview 751 4/30/2024
2024.2.2-preview 670 4/23/2024
2024.2.1-preview 759 4/11/2024
2024.1.30 720 10/24/2024
2024.1.29 613 10/11/2024
2024.1.28 851 9/9/2024
2024.1.27 797 8/28/2024
2024.1.26 1,031 8/15/2024
2024.1.25 2,195 7/22/2024
2024.1.24 8,376 7/12/2024
2024.1.23 6,554 6/26/2024
2024.1.22 2,346 6/15/2024
2024.1.21 10,385 6/6/2024
2024.1.20 4,580 5/30/2024
2024.1.19 1,468 5/24/2024
2024.1.18 28,193 5/6/2024
2024.1.17 2,591 5/3/2024
2024.1.16 18,837 4/30/2024
2024.1.15 2,262 4/29/2024
2024.1.14 2,717 4/23/2024
2024.1.13 894 4/23/2024
2024.1.12 1,428 4/17/2024
2024.1.11-rc 697 4/11/2024
2024.1.10-rc 753 4/4/2024
2024.1.9-rc 806 3/27/2024
2024.1.8-preview 758 3/25/2024
2024.1.7-preview 884 3/19/2024
2024.1.6-preview 950 3/6/2024
2024.1.5-preview 958 2/29/2024
2024.1.4-preview 1,153 2/27/2024
2024.1.3-preview 992 2/23/2024
2024.1.2-preview 1,363 2/7/2024
2024.1.1-preview 1,246 1/30/2024
2024.0.16 760 6/15/2024
2024.0.15 671 6/6/2024
2024.0.14 690 5/30/2024
2024.0.13 651 5/24/2024
2024.0.12 847 4/17/2024
2024.0.11 36,442 3/21/2024
2024.0.10 1,547 3/19/2024
2024.0.9 6,291 2/29/2024
2024.0.8 2,585 2/23/2024
2024.0.7 13,634 2/7/2024
2024.0.6 17,247 1/3/2024
2024.0.5-rc 1,245 12/21/2023
2024.0.4-rc 1,522 12/12/2023
2024.0.3-preview 1,518 12/6/2023
2024.0.2-preview 3,204 11/14/2023
2024.0.1-preview 1,653 11/6/2023
2023.4.9 5,101 2/7/2024
2023.4.8 9,502 12/21/2023
2023.4.7 2,030 12/12/2023
2023.4.6 20,765 11/7/2023
2023.4.5-rc 1,694 10/26/2023
2023.4.4-preview 1,534 10/18/2023
2023.4.3-preview 2,859 10/4/2023
2023.4.2-preview 1,537 9/26/2023
2023.4.1-preview 1,548 9/13/2023
2023.3.10 1,224 12/21/2023
2023.3.9 1,373 12/12/2023
2023.3.8 11,735 10/17/2023
2023.3.7-rc 1,542 9/29/2023
2023.3.6-rc 1,558 9/26/2023
2023.3.5-rc 1,625 9/13/2023
2023.3.4-preview 1,820 8/30/2023
2023.3.3-preview 1,598 8/29/2023
2023.3.2-preview 3,869 8/1/2023
2023.3.1-preview 1,948 7/28/2023
2023.2.5 21,644 9/12/2023
2023.2.4 11,362 8/7/2023
2023.2.3-rc 1,942 8/3/2023
2023.2.2-rc 2,192 7/21/2023
2023.2.1-preview 3,063 6/27/2023
2023.1.12 1,811 9/12/2023
2023.1.11 2,594 8/7/2023
2023.1.10 3,461 7/17/2023
2023.1.9 2,402 6/27/2023
2023.1.8-rc 1,677 6/19/2023
2023.1.7-rc 1,444 6/14/2023
2023.1.6-rc 2,030 6/12/2023
2023.1.5-preview 2,246 5/26/2023
2023.1.4-preview 1,353 5/26/2023
2023.1.3-preview 1,963 5/25/2023
2023.1.2-preview 1,942 5/24/2023
2023.1.1-preview 4,699 5/10/2023
2023.0.121 1,437 7/17/2023
2023.0.120 1,483 6/27/2023
2023.0.119 14,515 6/14/2023
2023.0.118 1,748 6/7/2023
2023.0.117 2,585 5/25/2023
2023.0.116 1,821 5/23/2023
2023.0.115 5,781 5/4/2023
2023.0.113-rc 2,700 4/21/2023
2023.0.112-rc 1,533 4/14/2023
2023.0.111-rc 2,862 4/5/2023
2023.0.110-rc 1,948 3/30/2023
2023.0.109-rc 2,339 3/23/2023
2023.0.108-rc 1,956 3/15/2023
2023.0.107-rc 3,115 3/1/2023
2023.0.106-rc 278 2/27/2023
2023.0.105-rc 3,179 2/22/2023
2023.0.104-rc 2,043 2/21/2023
2023.0.102-rc 5,603 2/9/2023
2023.0.101-rc 4,264 1/25/2023
0.5.83-preview 2,323 1/23/2023
0.5.82-preview 2,166 1/23/2023
0.5.81-preview 2,096 1/18/2023
0.5.80-preview 2,133 1/15/2023
0.5.79-preview 2,053 1/13/2023
0.5.78-preview 2,253 1/10/2023
0.5.77-preview 2,007 1/9/2023
0.5.76-preview 2,138 1/6/2023
0.5.75-preview 2,076 1/5/2023
0.5.74-preview 2,087 1/3/2023
0.5.73-preview 2,846 12/15/2022
0.5.72-preview 2,019 12/13/2022
0.5.71-preview 2,660 12/10/2022
0.5.70-preview 2,083 12/9/2022
0.5.69-preview 2,023 12/8/2022
0.5.68-preview 1,459 12/5/2022
0.5.67-preview 1,605 12/2/2022
0.5.66-preview 1,469 11/30/2022
0.5.65-preview 1,370 11/30/2022
0.5.64-preview 1,388 11/29/2022
0.5.63-preview 2,093 11/25/2022
0.5.62-preview 1,396 11/24/2022
0.5.61-preview 1,322 11/17/2022
0.5.60-preview 1,345 11/17/2022
0.5.59-preview 1,280 11/16/2022
0.5.58-preview 1,406 11/15/2022
0.5.57-preview 1,444 11/10/2022
0.5.56-preview 1,586 11/8/2022
0.5.55-preview 1,369 11/3/2022
0.5.54-preview 1,349 11/2/2022
0.5.53-preview 1,332 11/1/2022
0.5.52-preview 1,419 10/28/2022
0.5.51-preview 2,061 10/27/2022
0.5.50-preview 827 10/24/2022
0.5.49-preview 384 10/20/2022
0.5.48-preview 741 10/18/2022
0.5.47-preview 667 10/12/2022
0.5.46-preview 510 10/6/2022
0.5.45-preview 290 10/6/2022
0.5.44-preview 551 10/4/2022
0.5.43-preview 587 10/1/2022
0.5.42-preview 394 9/29/2022
0.5.41-preview 836 9/28/2022
0.5.40-preview 1,130 9/9/2022
0.5.39-preview 481 9/6/2022
0.5.38-preview 424 9/3/2022
0.5.37-preview 1,467 8/19/2022
0.5.36-preview 673 8/9/2022
0.5.35-preview 357 8/6/2022
0.5.34-preview 539 8/4/2022
0.5.33-preview 226 8/2/2022
0.5.32-preview 405 7/28/2022
0.5.31-preview 365 7/26/2022
0.5.30-preview 652 7/22/2022
0.5.29-preview 577 7/21/2022
0.5.28-preview 615 7/20/2022
0.5.27-preview 321 7/19/2022
0.5.26-preview 524 7/12/2022
0.5.25-preview 892 6/25/2022
0.5.24-preview 503 6/23/2022
0.5.23-preview 1,000 6/7/2022
0.5.22-preview 519 5/31/2022
0.5.21-preview 371 5/27/2022
0.5.20-preview 341 5/24/2022
0.5.19-preview 754 5/17/2022
0.5.18-preview 330 5/12/2022
0.5.16-preview 372 5/9/2022
0.5.15-preview 342 5/7/2022
0.5.13-preview 760 4/28/2022
0.5.12-preview 378 4/27/2022
0.5.11-preview 368 4/15/2022
0.5.10-preview 379 4/15/2022
0.5.9-preview 315 4/14/2022
0.5.8-preview 435 4/7/2022
0.5.7-preview 377 3/22/2022
0.5.6-preview 387 3/16/2022
0.5.5-preview 368 3/15/2022
0.5.4-preview 334 3/14/2022
0.5.3-preview 336 3/9/2022
0.5.2-preview 337 2/23/2022
0.5.1-preview 363 2/18/2022
0.5.0-preview 309 2/7/2022