36 lines
1.1 KiB
XML
36 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<LangVersion>preview</LangVersion>
|
|
<RootNamespace>StellaOps.Integrations.Persistence</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="StellaOps.Integrations.Persistence.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Embed SQL migrations as resources -->
|
|
<EmbeddedResource Include="Migrations\**\*.sql" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Prevent automatic compiled-model binding so non-default schemas can build runtime models. -->
|
|
<Compile Remove="EfCore\CompiledModels\IntegrationDbContextAssemblyAttributes.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\StellaOps.Integrations.Core\StellaOps.Integrations.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" PrivateAssets="all" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|