2024-01-12 23:22:01 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-01-15 15:10:18 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2022-12-20 12:33:57 +01:00
|
|
|
<LangVersion>11</LangVersion>
|
2020-01-15 15:10:18 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<OutputPath>..\bin\Content.Server.Database\</OutputPath>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2022-02-22 21:56:45 -07:00
|
|
|
<NoWarn>RA0003</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
2020-01-15 15:10:18 +01:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-12 23:22:01 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
2020-01-15 15:10:18 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
2024-01-12 23:22:01 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
2023-04-03 02:24:55 +02:00
|
|
|
|
|
|
|
|
<!-- Necessary at design time -->
|
2024-01-12 23:22:01 +01:00
|
|
|
<PackageReference Include="SQLitePCLRaw.provider.sqlite3" Condition="'$(UseSystemSqlite)' == 'True' and '$(Configuration)' != 'Release'" />
|
|
|
|
|
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Condition="'$(UseSystemSqlite)' != 'True' and '$(Configuration)' != 'Release'" />
|
2020-01-15 15:10:18 +01:00
|
|
|
</ItemGroup>
|
2021-11-22 19:08:27 +01:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-28 14:56:53 +01:00
|
|
|
<ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
|
2021-11-22 19:08:27 +01:00
|
|
|
</ItemGroup>
|
2022-02-09 17:16:42 +01:00
|
|
|
|
2023-03-06 20:38:07 +01:00
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2020-01-15 15:10:18 +01:00
|
|
|
</Project>
|