30 lines
943 B
XML
30 lines
943 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>Use PostgreSQL as a document database</Description>
|
|
<PackageTags>JSON Document PostgreSQL Npgsql</PackageTags>
|
|
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Library.fs" />
|
|
<Compile Include="WithProps.fs" />
|
|
<Compile Include="Functions.fs" />
|
|
<Compile Include="Extensions.fs" />
|
|
<Compile Include="Compat.fs" />
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
<None Include="..\icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Npgsql" />
|
|
<PackageReference Include="Npgsql.FSharp" />
|
|
<PackageReference Update="FSharp.Core" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\BitBadger.Documents.Common.fsproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|