Skip to content

Instantly share code, notes, and snippets.

View nthdeveloper's full-sized avatar

Mustafa Kök nthdeveloper

View GitHub Profile
@nthdeveloper
nthdeveloper / MEF_Cheat_Sheet.md
Last active June 16, 2019 08:58
Managed Extensibility Framework (MEF) cheat sheet.
@nthdeveloper
nthdeveloper / Autofac_Cheat_Sheet.md
Last active June 12, 2019 21:34
Autofac cheeat sheet for the most common scenarios.

Documentation

Online

PDF

Simplest Usage

ContainerBuilder builder = new ContainerBuilder();
//... register components
var container = builder.Build();
@nthdeveloper
nthdeveloper / Moq_Cheat_Sheet.md
Last active December 14, 2023 11:21
Moq cheat sheet for most common scenarios
@nthdeveloper
nthdeveloper / NUnit_Cheat_Sheet.md
Last active May 22, 2024 08:57
NUnit Cheat Sheet for the most common test scenarios.

Installation

Install-Package NUnit

Install-Package NUnit.TestAdapter

Install-Package Microsoft.NET.Test.Sdk

Test Execution Workflow

using NUnit.Framework;