Skip to content

Commit

Permalink
fix: package XML documentation (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
alespour authored May 17, 2024
1 parent db8c49d commit cdd8cae
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
name: Check compilation warnings
command: |
dotnet clean --configuration Release
dotnet build --configuration Release -warnAsError -warnAsMessage:CS0618,NETSDK1138
dotnet build --configuration Release -warnAsError -warnAsMessage:CS0419,CS0618,CS1591,CS1573,CS1574,NETSDK1138
check-code-formatting:
docker:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 4.16.0 [unreleased]

#### Build:
- [#633](https://github.com/influxdata/influxdb-client-csharp/pull/633): Add package XML documentation.

## 4.15.0 [2024-05-17]

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions Client.Core/Client.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\Assets\influxdata.jpg" Pack="true" PackagePath="" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions Client.Legacy/Client.Legacy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\Assets\influxdata.jpg" Pack="true" PackagePath="" />
<None Include=".\README.md" Pack="true" PackagePath="\"/>
Expand Down
4 changes: 4 additions & 0 deletions Client.Linq/Client.Linq.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\Assets\influxdata.jpg" Pack="true" PackagePath="" />
<None Include=".\README.md" Pack="true" PackagePath="\"/>
Expand Down
4 changes: 4 additions & 0 deletions Client/Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
<SignAssembly>true</SignAssembly>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\Assets\influxdata.jpg" Pack="true" PackagePath="" />
<None Include=".\README.md" Pack="true" PackagePath="\" />
Expand Down

0 comments on commit cdd8cae

Please sign in to comment.