Skip to content

01. Getting started

Tim Maes edited this page Oct 15, 2024 · 2 revisions

This guide will help you get started with Bindicate, from installation to your first service registration.

Prerequisites

  • .NET 6.0 or higher.
  • Basic understanding of dependency injection in .NET.

You can install Bindicate via NuGet Package Manager or the .NET CLI.

Via NuGet Package Manager

Install-Package Bindicate

Via .NET CLI

dotnet add package Bindicate

Overview

Bindicate streamlines the process of registering services with the .NET dependency injection container. By using custom attributes, you can reduce boilerplate code and enhance the readability of your service registrations.

Clone this wiki locally