2026-04-27 21:37:45 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<RootNamespace>Marechai.MobyGames</RootNamespace>
|
2026-04-29 23:30:11 +01:00
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
2026-04-27 21:37:45 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="HtmlAgilityPack"/>
|
|
|
|
|
<PackageReference Include="MySqlConnector"/>
|
2026-04-30 02:43:05 +01:00
|
|
|
<PackageReference Include="ReverseMarkdown"/>
|
2026-04-27 21:37:45 +01:00
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql"/>
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql.Json.Microsoft"/>
|
2026-05-17 19:40:14 +01:00
|
|
|
<PackageReference Include="PuppeteerSharp"/>
|
2026-04-27 21:37:45 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Marechai.Database\Marechai.Database.csproj"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="appsettings.json" CopyToOutputDirectory="PreserveNewest"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|