30 lines
965 B
XML
30 lines
965 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="CommonTests.fs" />
|
|
<Compile Include="Types.fs" />
|
|
<Compile Include="PostgresTests.fs" />
|
|
<Compile Include="PostgresExtensionTests.fs" />
|
|
<Compile Include="SqliteTests.fs" />
|
|
<Compile Include="SqliteExtensionTests.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Expecto" Version="10.2.1" />
|
|
<PackageReference Update="FSharp.Core" Version="8.0.300" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\BitBadger.Documents.Common.fsproj" />
|
|
<ProjectReference Include="..\Postgres\BitBadger.Documents.Postgres.fsproj" />
|
|
<ProjectReference Include="..\Sqlite\BitBadger.Documents.Sqlite.fsproj" />
|
|
<ProjectReference Include="..\Tests.CSharp\BitBadger.Documents.Tests.CSharp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|