Overview
Greetings, fellow programmers! Has your.NET project ever left you entangled in the complex web of dependency injection? Do not be alarmed! We've got you covered, and today we're launching the revolutionary SuperInject NuGet Library!

How does SuperInject work?
SuperInject is your reliable dependency injection sidekick, not just another NuGet package. Imagine this: simplified service and repository registration that incorporates a little bit of fun and simplicity.

How to Begin

First Step: The Installation Dance
Now let's start the celebration! Grab a terminal and give SuperInject a hug:

dotnet add package SuperInject

SuperInject loves to be invited to the party!

Step 2. Mark Your Classes, It’s Attribute Time!
Now, here comes the fun part. Mark your classes with the ServiceAttribute or RepositoryAttribute. It’s like giving your classes a VIP pass for the dependency injection club.

using SuperInject;

[Service(ServiceLifetime.Singleton)]
public class MySingletonService : ISomeInterface
{
// Implementation goes here...
}


And for repositories:
using SuperInject;

[Repository(ServiceLifetime.Transient)]
public class MyTransientRepository : ISomeInterface
{
// Implementation goes here...
}

Let’s Get SuperInjecting!

The stage is set, and the lights are on, now let’s call the shots with the SuperInject extension method. In your Startup.cs or Program.cs file, give your services and repositories a grand entrance:
// ConfigureServices method in Startup.cs
public void ConfigureServices(IServiceCollection services)
{
// Use the AddSuperInject extension method to automatically register services and repositories
services.AddSuperInject();

// Your other service registrations go here...

// And the party continues...
}


Why SuperInject?
Attribute Awesomeness: No more tedious configurations! SuperInject’s attributes make your classes stand out, like stars on the red carpet.
Extension Method Magic: Say goodbye to manual registrations. Let SuperInject handle the heavy lifting, leaving you with more time for the fun stuff.
Avoid Circular Dependency Drama: SuperInject knows how to navigate the tricky paths of circular dependencies. It’s like having a GPS for your dependency injection journey.

Wrapping Up
SuperInject isn’t just a NuGet package; it’s your accomplice in writing cleaner, more maintainable code. So, what are you waiting for? Add a dash of SuperInject to your projects, and let the dependency injection party begin!

Ready to supercharge your dependency injection game? Grab SuperInject, and let the coding festivities begin!