Skip to content

Commit

Permalink
Added documentation generation to the library which was missing. (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenprogrammer authored Dec 4, 2020
1 parent 4f5896f commit 4af6bf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 7 additions & 2 deletions Fortnox.NET/Fortnox.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageVersion>2.5.2</PackageVersion>
<Version>2.5.2</Version>
<PackageVersion>2.5.3</PackageVersion>
<Version>2.5.3</Version>
<Title>Fortnox API SDK</Title>
<Authors>Zenta AB</Authors>
<Description>.NET bindings for the Fortnox API.</Description>
Expand All @@ -21,6 +21,11 @@
<StartupObject />
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <!-- // NOTE(Oskar): Disables the warning "Missing XML comment for publicly visible type or member". -->
</PropertyGroup>

<ItemGroup>
<None Include="..\.github\NuGetLogo.png">
<Pack>True</Pack>
Expand Down
1 change: 0 additions & 1 deletion Fortnox.NET/WebSockets/FortnoxWebSocketClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public class FortnoxWebSocketClient
/// <summary>
/// Initializes a new instance of the <see cref="FortnoxWebSocketClient"/> class with the specified AccessToken, ClientSecret and optional BufferSize.
/// </summary>
/// <param name="accessToken">The Fortnox passkey.</param>
/// <param name="clientSecret">The integrators key for making requests to Fortnox.</param>
/// <param name="bufferSize">Optional target buffer size when receiving messages from the socket connection.</param>
public FortnoxWebSocketClient(string clientSecret, int bufferSize = DEFAULT_BUFFER_SIZE)
Expand Down

0 comments on commit 4af6bf1

Please sign in to comment.