29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<UseAppHost>true</UseAppHost>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<IsPackable>true</IsPackable>
|
|
<Description>Schema evolution testing framework for backward/forward compatibility verification</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="StellaOps.Testing.SchemaEvolution.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
|
|
<PackageReference Include="Npgsql" />
|
|
<PackageReference Include="Testcontainers.PostgreSql" />
|
|
<PackageReference Include="xunit.v3.assert" PrivateAssets="all" />
|
|
<PackageReference Include="xunit.v3.core" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|