Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ If you are implementing subscriptions to participate in Xero's App Store you wil

<ItemGroup>
<PackageReference Include="DotNetEnv" Version="2.1.1" />
<PackageReference Include="IdentityModel" Version="4.0.0" />
<PackageReference Include="Duende.IdentityModel" Version="7.0.0" />
<PackageReference Include="Xero.NetStandard.OAuth2" Version="3.19.0" />
<PackageReference Include="Xero.NetStandard.OAuth2Client" Version="1.5.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageTags>xero;api;sdk;oauth2;oauth2.0</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="IdentityModel" Version="7.0.0" />
<PackageReference Include="Duende.IdentityModel" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.1.0" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion Xero.NetStandard.OAuth2Client/src/Client/XeroClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Net.Http.Headers;
using System.Security.Cryptography;
using Xero.NetStandard.OAuth2.Models;
using IdentityModel.Client;
using Duende.IdentityModel.Client;
using Newtonsoft.Json;
using Xero.NetStandard.OAuth2.Config;
using Xero.NetStandard.OAuth2.Token;
Expand Down
Loading