BitBadger.Documents/src/Common/BitBadger.Documents.Common.fsproj
Daniel J. Summers 5580284910 Add XML documentation (#10)
The prior `///` F# documentation blocks were not rendering in IDEs, and parameters were not documented. This change adds complete XML documentation to all (but `Compat`) classes, methods, and functions.

Reviewed-on: #10
2024-12-30 22:03:18 +00:00

23 lines
841 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Common files for PostgreSQL and SQLite document database libraries</Description>
<PackageTags>JSON Document SQL</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library.fs" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.SystemTextJson" Version="1.3.13" />
<PackageReference Update="FSharp.Core" Version="9.0.100" />
<PackageReference Include="System.Text.Encodings.Web" Version="9.0.0" />
<PackageReference Include="System.Text.Json" Version="9.0.0" />
</ItemGroup>
</Project>