Code Monkey home page Code Monkey logo

basicfodyaddin's Introduction

Icon

This is a simple solution built as a starter for writing Fody addins.

The moving parts

BasicFodyAddin Project

The project that does the weaving.

Output of the project

It outputs a file named SampleFodyAddin.Fody. The '.Fody' suffix is necessary for it to be picked up by Fody.

ModuleWeaver

ModuleWeaver.cs is where the target assembly is modified. Fody will pick up this type during a its processing.

In this case a new type is being injected into the target assembly that looks like this.

public class Hello
{
    public string World()
    {
        return "Hello World";
    }
}

See ModuleWeaver for more details.

Nuget Project

Fody addins are deployed as nuget packages. NugetProject builds the package for SampleFodyAddin as part of a build. The output of this project is placed in SolutionDir/NuGetBuild.

This project uses pepita to construct the package but you could also use nuget.exe.

For more information on the nuget structure of Fody addins see DeployingAddinsAsNugets

AssemblyToProcess Project

A target assembly to process and then validate with unit tests.

Tests Project

This is where you would place your unit tests.

Note that it does not reference AssemblyToProcess as this could cause assembly loading issues. However we want to force AssemblyToProcess to be built prior to the Tests project. So in Tests.csproj there is a non-reference dependency to force the build order.

<ProjectReference Include="..\AssemblyToProcess\AssemblyToProcess.csproj">
  <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>

The test assembly contains three parts.

1. WeaverHelper

A helper class that takes the output of AssemblyToProcess and uses ModuleWeaver to process it. It also create a copy of the target assembly suffixed with '2' so a side-by-side comparison of the before and after IL can be done using a decompiler.

2. Verifier

A helper class that runs peverfiy to validate the resultant assembly.

3. Tests

The actual unit tests that use WeaverHelper and Verifier. It has one test to construct and execute the injected class.

No reference to Fody

Not that there is no reference to Fody nor are any Fody files included in the solution. Interaction with Fody is done by convention at compile time.

Icon

Lego designed by Timur Zima from The Noun Project

basicfodyaddin's People

Contributors

ninlar avatar seesharper avatar simoncropp avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.