Skip to content

Commit

Permalink
Merge pull request #11 from FrendsPlatform/10-ReadEmailBug
Browse files Browse the repository at this point in the history
10 read email bug
  • Loading branch information
jefim authored May 24, 2024
2 parents fc5f290 + 5e3732e commit 4decf8e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Frends.Exchange.ReadEmail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.1.0] - 2023-24-05
### Fixed
- Skip parameter is null instead of zero when it is not supported

## [1.0.0] - 2023-12-05
### Added
- Initial implementation
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ public class Input
/// Skip the first n items.
/// </summary>
/// <example>10</example>
[DefaultValue(0)]
public int Skip { get; set; }
[DefaultValue(null)]
public int? Skip { get; set; }

/// <summary>
/// Limits the result to the first n items. If set to 0, all items are returned.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Authors>Frends</Authors>
<Copyright>Frends</Copyright>
<Company>Frends</Company>
Expand All @@ -22,9 +22,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.10.4" />
<PackageReference Include="Azure.Identity" Version="1.11.3" />
<PackageReference Include="Microsoft.Graph" Version="5.35.0" />
<PackageReference Include="MimeKit" Version="4.3.0" />
<PackageReference Include="MimeKit" Version="4.6.0" />
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
</ItemGroup>

Expand Down

0 comments on commit 4decf8e

Please sign in to comment.