Content.Server.Database.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  4. <TargetFramework>$(TargetFramework)</TargetFramework>
  5. <LangVersion>12</LangVersion>
  6. <IsPackable>false</IsPackable>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <OutputPath>..\bin\Content.Server.Database\</OutputPath>
  9. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  10. <Nullable>enable</Nullable>
  11. <NoWarn>RA0003</NoWarn>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Design">
  15. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  16. <PrivateAssets>all</PrivateAssets>
  17. </PackageReference>
  18. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Core" />
  19. <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
  20. <!-- Necessary at design time -->
  21. <PackageReference Include="SQLitePCLRaw.provider.sqlite3" Condition="'$(UseSystemSqlite)' == 'True' and '$(Configuration)' != 'Release'" />
  22. <PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Condition="'$(UseSystemSqlite)' != 'True' and '$(Configuration)' != 'Release'" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
  26. </ItemGroup>
  27. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  28. </Project>