This is an add-in for Fody
This framework introduces automated behaviour when developing an application, and provides dependency injection support, and dependency resolution.
See also Fody usage.
The framework is available for installation from the NuGet package manager. Either install the framework through the Visual Studio package manager interface, or by running the following commands:
PM> Install-Package Fody
PM> Install-Package Mimick.Fody
The package must then be added to the Fody FodyWeavers.xml
document, such as below:
<?xml version="1.0" encoding="utf-8"?>
<Weavers>
<Mimick />
</Weavers>
The Mimick Framework requires a little configuration before it can be immediately used within an application. For more information, please refer to the Getting Started page.
The framework is designed to run on both .NET Framework (4.6.1+) and .NET Standard (2.0+). Running the dotnet build
command, as described below, will result in a net461
and netstandard2.0
build being created.
The library can be built locally by running the following against the solution directory:
C:\Path> dotnet build -c Release
The library can be tested locally by running the following against the solution directory:
C:\Path> dotnet test -c Release Mimick.Tests\Mimick.Tests.csproj