feat(extensions): created extensions project.

- Moved encoding extensions from application to extensions project to increase the abstraction
This commit is contained in:
Developer 02
2024-10-01 17:25:50 +02:00
parent 792aa0b922
commit 728385b70a
13 changed files with 34 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
</ItemGroup>
</Project>