Files
marechai/Marechai.Translation/Marechai.Translation.csproj
Natalia Portillo 30147bf7a9 Add automatic software genre translation system.
- Removed a large number of unused genre entries from French and Italian resource files for SoftwareService.
- Updated SoftwareService to include language parameter when fetching genres from the API.
- Removed TranslationService registration from the DI container in Register.cs.
- Added MarechaiTranslation service registration in Startup.cs for improved translation handling.
- Updated _Imports.razor to include the new Translation namespace.
2026-05-14 19:30:29 +01:00

18 lines
650 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<RootNamespace>Marechai.Translation</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- Brings IHttpClientFactory, IServiceCollection, IConfiguration, ILogger&lt;T&gt; without
pulling in additional NuGet versioning. The shared library has no Razor / MVC concerns;
the FrameworkReference is the lightest way to access the DI/HttpClient/Logging types. -->
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>