Skip to content
Merged
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 .github/workflows/publish_nuget_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.x'
dotnet-version: '10.x'

- name: Clear NuGet Cache
run: dotnet nuget locals all --clear
Expand Down
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@ _TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
_NCrunch_*
.*crunch*.local.xml
*.v3.ncrunchsolution.user

# MightyMoose
*.mm.*
AutoTest.Net/
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ For full API documentation, please visit [evidos.github.io](https://evidos.githu
For detailed examples, visit: [https://github.com/Evidos/SignhostClientLibrary/blob/master/README.md](https://github.com/Evidos/SignhostClientLibrary/blob/master/README.md)

```c#
var settings = new SignHostApiClientSettings("YourAppKey", "apikey or usertoken");

var retryClient = new SignHostApiRetryClient(settings);
var settings = new SignhostApiClientSettings("YourAppKey", "apikey or usertoken");

var retryClient = new SignhostApiRetryClient(settings);
```
3 changes: 2 additions & 1 deletion src/Signhost.APIClient.Tests/Signhost.APIClient.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Build">
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup Label="Package References">
Expand Down
Loading