Rougamo.Fody 5.0.2

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

Rougamo - 肉夹馍

中文 | English

What is Rougamo

Rougamo is a static code weaving AOP component. Commonly used AOP components include Castle, Autofac, and AspectCore. Unlike these components, which typically implement AOP through dynamic proxy and IoC mechanisms at runtime, Rougamo achieves AOP by directly modifying the target method's IL code during compilation. Rougamo supports all types of methods, including synchronous/asynchronous methods, static/instance methods, constructors, and properties.

The origin of the name.

Rougamo, a type of traditional Chinese street food, is somewhat similar to a hamburger, as both involve meat being sandwiched between bread. Every time I mention AOP, I think of Rougamo, because AOP is just like Rougamo, do aspects around the mehod.

Rougamo's Advantages and Disadvantages

  • Advantages:

    1. Shorter Application Startup Time, Static weaving occurs at compile time, whereas dynamic proxies are set up at application startup.
    2. Support for All Methods, Rougamo supports all methods, including constructors, properties, and static methods. Dynamic proxies often only handle instance methods due to their reliance on IoC.
    3. Independent from Other Components, Rougamo does not require initialization and is easy and quick to use. Dynamic AOP relies on IoC components, which often need initialization at application startup and vary between different IoC components. Rougamo does not require initialization; you just define the aspect type and apply it.
  • Disadvantages: Larger Assembly Size, Since Rougamo is a compile-time AOP, it weaves additional code into the assembly at compile time, which increases the assembly size. However, this overhead is generally minimal and can be evaluated in your project through configuration options.

Basic Functionality Introduction

As an AOP component, Rougamo's primary function is to execute additional operations at key lifecycle points of a method. Rougamo supports four lifecycle points (or Join Points):

  1. Before method execution;
  2. After method execution successfully;
  3. After method throws an exception;
  4. When the method exits (regardless of whether it was successful or threw an exception, similar to try..finally).

Here's a simple example demonstrating how lifecycle points are expressed in code:

// Define a type inheriting from MoAttribute
public class TestAttribute : MoAttribute
{
    public override void OnEntry(MethodContext context)
    {
        // OnEntry corresponds to before method execution
    }

    public override void OnException(MethodContext context)
    {
        // OnException corresponds to after method throws an exception
    }

    public override void OnSuccess(MethodContext context)
    {
        // OnSuccess corresponds to after method execution successfully
    }

    public override void OnExit(MethodContext context)
    {
        // OnExit corresponds to when method exits
    }
}

At each lifecycle point, in addition to performing operations like logging, measuring method execution time, and APM instrumentation that don't affect method execution, you can also:

  1. Modify method parameters
  2. Intercept method execution
  3. Modify method return values
  4. Handle method exceptions
  5. Retry method execution

Applying Rougamo to Methods

The simplest and most direct way is to apply the defined Attribute directly to methods. This can include synchronous and asynchronous methods, instance methods and static methods, properties and property getters/setters, as well as instance and static constructors:

class Abc
{
    [Test]
    static Abc() { }

    [Test]
    public Abc() { }

    [Test]
    public int X { get; set; }

    public static Y
    {
        [Test]
        get;
        [Test]
        set;
    }

    [Test]
    public void M() { }

    [Test]
    public static async ValueTask MAsync() => await Task.Yield();
}

Applying attributes directly to methods is straightforward, but for common AOP types, adding the attribute to every method can be cumbersome. Rougamo also provides several bulk application methods:

  1. Class or assembly-level attributes
  2. Low-intrusive implementation of the empty interface IRougamo
  3. Specify an attribute as a proxy attribute and apply it to methods with the proxy attribute
  4. Non-intrusive configurative weaving method

When applying attributes in bulk, such as applying TestAttribute to a class, you typically don’t want every method in the class to receive TestAttribute. Instead, you may want to select methods that meet specific criteria. Rougamo offers two methods for method selection:

  1. Coarse-grained method feature matching, which allows specifying static, instance, public, private, property, constructor methods, etc.
  2. AspectJ-style class expressions, which provide AspectJ-like expressions for finer-grained matching, such as method names, return types, parameter types, etc.

Asynchronous Aspects

In modern development, asynchronous programming has become quite common. In the previous example, the method lifecycle nodes correspond to synchronous methods. If you need to perform asynchronous operations, you would have to manually block asynchronous operations to wait for the results, which can lead to resource wastage and performance loss. Rougamo provides asynchronous aspects in addition to synchronous aspects to better support asynchronous operations:

// Define a type that inherits from AsyncMoAttribute
public class TestAttribute : AsyncMoAttribute
{
    public override async ValueTask OnEntryAsync(MethodContext context) { }

    public override async ValueTask OnExceptionAsync(MethodContext context) { }

    public override async ValueTask OnSuccessAsync(MethodContext context) { }

    public override async ValueTask OnExitAsync(MethodContext context) { }
}

However, if asynchronous operations are not needed, it's still recommended to use synchronous aspects. For more information on asynchronous aspects, you can refer to Asynchronous Aspects.

Performance Optimization

Rougamo is a method-level AOP component. When applying Rougamo to methods, it instantiates related objects each time the method is called, which adds a burden to garbage collection (GC). Although this overhead is usually minimal and often negligible, Rougamo addresses performance impact by providing various optimization strategies:

  1. Partial Weaving: If you only want to record a call log before method execution and do not need other lifecycle nodes or exception handling, you can use partial weaving to include only the required functionalities. This reduces the actual IL code woven and minimizes the number of instructions executed at runtime.

  2. Structs: One difference between classes and structs is that classes are allocated on the heap, while structs are allocated on the stack. Using structs can allocate some Rougamo types on the stack, reducing GC pressure.

  3. Slimming MethodContext: MethodContext holds contextual information about the current method. This information requires additional objects and involves boxing and unboxing operations, such as for method parameters and return values. If you do not need this information, slimming down MethodContext can achieve certain optimization effects.

  4. Forced Synchronization: As discussed in Asynchronous Aspects, asynchronous aspects use ValueTask to optimize synchronous execution but still incur additional overhead. If asynchronous operations are not required, forcing synchronous aspects can avoid the extra costs of asynchronous aspects.

  5. Custom Aspect Type Lifecycle, structs can avoid the creation of reference types, but they also have many limitations themselves, such as being unable to inherit from a parent class to reuse logic, unable to inherit from Attribute which results in an inability to specify parameters when applying aspect types (Attributes can specify constructor and property parameters when applied [Xyz(123, V = "abc")]). A way to balance usability and performance is through custom declaration cycles.

Learn More

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (75)

Showing the top 5 NuGet packages that depend on Rougamo.Fody:

Package Downloads
BotSharp.Core

Open source LLM application framework to build scalable, flexible and robust AI system.

ThingsGateway.Admin.Application

Package Description

ThingsGateway.Gateway.Application

Package Description

HandeSoft.Core

Package Description

HandeSoft.Web.Core

Package Description

GitHub repositories (8)

Showing the top 8 popular GitHub repositories that depend on Rougamo.Fody:

Repository Stars
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
dotnetcore/FreeSql
.NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine orm, QuestDB orm, MsAccess orm.
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
ThingsGateway/ThingsGateway
ThingsGateway is a cross-platform, high-performance gateway for edge data acquisition and IoT connectivity. Developed with .NET 8, it offers a suite of powerful tools, including advanced PLC communication libraries and debugging software.
mrtylerzhou/AntFlow.net
.net首个钉钉工作流UI风格BPM工作流平台!支持数十种数据库,开箱即用。同时也是一款纯血版工作流引擎,仅依赖了asp.net 9.0和freesql,natasha等几款优秀开源项目。致力解决传统工作流流程图必须由专业程序员绘制、学习曲线陡峭、上手难、排查问题难、维护成本高等问题。如果喜欢请给颗⭐️。
2881099/FreeSql.AdminLTE
这是一个 .NETCore MVC 中间件,基于 AdminLTE 前端框架动态产生 FreeSql 实体的增删查改界面。
hzy-6/hzy-admin
前后端分离权限管理系统基架! 数据权限、按钮权限、动态菜单、动态任务调度、动态WebApi、定时标记 [Scheduled("0/5 * * * * ?")] 、代码生成
netcorepal/d3shop
An online shop project based on Domain-Driven Design
Version Downloads Last Updated
5.0.2 21,225 10/13/2025
5.0.2-preview-1758270773 290 9/19/2025
5.0.1 99,667 6/22/2025
5.0.1-preview-1750248426 194 6/18/2025
5.0.0 147,642 12/8/2024
5.0.0-preview-1733564400 155 12/7/2024
5.0.0-preview-1733289406 154 12/4/2024
4.0.4 22,131 9/29/2024
4.0.4-preview-1727349912 171 9/26/2024
4.0.3 2,293 9/16/2024
4.0.3-preview-1726120802 181 9/12/2024
4.0.3-preview-1725957423 198 9/10/2024
4.0.2 807 9/9/2024
4.0.2-preview-1725956948 165 9/10/2024
4.0.2-preview-1725875652 191 9/9/2024
4.0.2-preview-1725466232 175 9/4/2024
4.0.1 4,106 9/2/2024
4.0.1-preview-1725141430 162 8/31/2024
4.0.0 11,821 8/10/2024
4.0.0-priview-1723306347 202 8/10/2024
4.0.0-priview-1722831925 152 8/5/2024
3.1.0 2,416 7/16/2024
3.0.2 785 7/8/2024
3.0.2-priview-1720363148 186 7/7/2024
3.0.2-priview-1720251661 197 7/6/2024
3.0.1 297 7/4/2024
3.0.1-priview-1720089186 177 7/4/2024
3.0.1-priview-1720085112 186 7/4/2024
3.0.0 7,637 5/4/2024
3.0.0-priview-1714754497 141 5/3/2024
3.0.0-priview-1714407561 200 4/29/2024
2.3.1 22,381 4/23/2024
2.3.1-priview-1713854631 190 4/23/2024
2.3.1-priview-1713791514 188 4/22/2024
2.3.0 5,252 3/10/2024
2.3.0-priview-1709894403 179 3/8/2024
2.2.0 5,301 1/20/2024
2.2.0-priview-1705656978 172 1/19/2024
2.2.0-priview-1705571301 167 1/18/2024
2.2.0-priview-1705566213 181 1/18/2024
2.2.0-priview-1702899195 261 12/18/2023
2.1.1 6,165 12/14/2023
2.1.1-priview-1702545048 229 12/14/2023
2.1.1-priview-1702542781 200 12/14/2023
2.0.1 1,674 11/16/2023
2.0.0 4,453 10/8/2023
2.0.0-priview-1696783135 223 10/8/2023
2.0.0-priview-1696592398 213 10/6/2023
2.0.0-priview-1695658688 217 9/25/2023
2.0.0-priview-1695465141 208 9/23/2023
2.0.0-priview-1680984436 330 4/8/2023
2.0.0-priview-1680981587 286 4/8/2023
1.4.1 19,791 3/12/2023
1.4.1-priview-1678603084 291 3/12/2023
1.4.1-priview-1678557697 316 3/11/2023
1.4.1-priview-1678557463 316 3/11/2023
1.4.0 3,363 3/1/2023
1.4.0-beta 576 2/27/2023
1.4.0-alpha 367 2/25/2023
1.3.4 78,391 2/17/2023
1.3.3 1,106 1/17/2023
1.3.2 26,539 12/20/2022
1.3.1 449 12/20/2022
1.3.1-beta 296 12/14/2022
1.3.0 1,593 12/8/2022 1.3.0 is deprecated because it has critical bugs.
1.2.3 440 1/17/2023
1.2.2 438 12/20/2022
1.2.2-beta 274 12/14/2022
1.2.1 810 11/29/2022
1.2.1-beta 266 11/29/2022
1.2.0 2,334 9/14/2022 1.2.0 is deprecated.
1.2.0-beta 297 9/12/2022
1.2.0-alpha2 286 9/12/2022
1.2.0-alpha1 291 8/31/2022
1.2.0-alpha 284 8/30/2022
1.1.4 497 11/29/2022
1.1.4-alpha 290 12/25/2022
1.1.3 726 9/11/2022 1.1.3 is deprecated because it has critical bugs.
1.1.2 1,883 8/22/2022
1.1.2-beta 310 8/22/2022
1.1.1 3,710 8/8/2022
1.1.1-beta 307 8/1/2022
1.1.0 763 7/28/2022
1.1.0-beta 325 7/15/2022
1.1.0-alpha4 316 6/24/2022
1.1.0-alpha3 295 6/24/2022
1.1.0-alpha2 312 6/23/2022
1.1.0-alpha1 315 6/22/2022
1.1.0-alpha 332 5/22/2022
1.0.3 849 5/6/2022
1.0.3-beta 325 4/26/2022
1.0.2 911 12/23/2021
1.0.1 10,970 11/23/2021
1.0.1-beta 5,066 11/23/2021