Add documentation to NuGet packages

This commit is contained in:
Daniel J. Summers 2024-12-30 16:55:51 -05:00
parent 8950dc1779
commit bec3fcda80
4 changed files with 10 additions and 5 deletions

View File

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>Common files for PostgreSQL and SQLite document database libraries</Description> <Description>Common files for PostgreSQL and SQLite document database libraries</Description>
<PackageTags>JSON Document SQL</PackageTags> <PackageTags>JSON Document SQL</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -2,11 +2,13 @@
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks> <TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<DebugType>embedded</DebugType> <DebugType>embedded</DebugType>
<GenerateDocumentationFile>false</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyVersion>4.0.0.0</AssemblyVersion> <AssemblyVersion>4.0.1.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion> <FileVersion>4.0.1.0</FileVersion>
<VersionPrefix>4.0.0</VersionPrefix> <VersionPrefix>4.0.1</VersionPrefix>
<PackageReleaseNotes>From v3.1: (see project site for breaking changes and compatibility) <PackageReleaseNotes>From v4.0: Add XML documention (IDE support)
From v3.1: (see project site for breaking changes and compatibility)
- Change ByField to ByFields - Change ByField to ByFields
- Support dot-access to nested document fields - Support dot-access to nested document fields
- Add Find*Ordered functions/methods - Add Find*Ordered functions/methods

View File

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>Use PostgreSQL as a document database</Description> <Description>Use PostgreSQL as a document database</Description>
<PackageTags>JSON Document PostgreSQL Npgsql</PackageTags> <PackageTags>JSON Document PostgreSQL Npgsql</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<Description>Use SQLite as a document database</Description> <Description>Use SQLite as a document database</Description>
<PackageTags>JSON Document SQLite</PackageTags> <PackageTags>JSON Document SQLite</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>