refactor(DependencyInjection): created to handle DependencyInjection

This commit is contained in:
2025-10-31 11:31:39 +01:00
parent 44ea893f05
commit 209785dda5
3 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.Extensions.DependencyInjection;
namespace EnvelopeGenerator.DependencyInjection;
public static class DependencyInjection
{
public static IServiceCollection AddEnvelopeGenerator(this IServiceCollection services)
{
return services;
}
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.10" />
</ItemGroup>
</Project>