mirror of
https://github.com/claunia/marechai.git
synced 2026-07-08 17:57:08 +00:00
- Implemented WwpcImportReviewDialog for reviewing pending software imports from WinWorldPC. - Created WwpcImportsQueue page for managing the import queue with filtering options. - Added WwpcImportsService to handle API interactions for WinWorldPC imports. - Updated navigation menu to include a link to the WinWorldPC Imports page. - Added localization support for the new imports feature in German, Spanish, French, Italian, and Dutch.
23 lines
852 B
XML
23 lines
852 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<RootNamespace>Marechai.WinWorld</RootNamespace>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="HtmlAgilityPack"/>
|
|
<PackageReference Include="MySqlConnector"/>
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql"/>
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Json.Microsoft"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Marechai.Database\Marechai.Database.csproj"/>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json" CopyToOutputDirectory="PreserveNewest"/>
|
|
</ItemGroup>
|
|
</Project>
|