mirror of
https://github.com/claunia/marechai.git
synced 2026-07-08 17:57:08 +00:00
- 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.
18 lines
650 B
XML
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<T> 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>
|