2024-11-13 09:19:06 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-05-14 14:37:47 +08:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-11-13 09:19:06 +08:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2025-05-14 11:56:29 +08:00
|
|
|
|
<OutputType>Library</OutputType>
|
2024-11-13 09:19:06 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
|
<DocumentationFile>bin\Debug\net5.0\OpenAuth.Repository.xml</DocumentationFile>
|
|
|
|
|
|
<NoWarn>1701;1702;1591;1573;1572;1570</NoWarn>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-05-14 16:18:17 +08:00
|
|
|
|
<PackageReference Include="Npgsql" Version="6.0.13" />
|
2024-11-13 09:19:06 +08:00
|
|
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.146" />
|
2025-05-14 16:18:17 +08:00
|
|
|
|
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
|
2024-11-13 09:19:06 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Infrastructure\Infrastructure.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Remove="Domain\DroneFlyAchievements.cs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|