Skip to content
Closed
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
3 changes: 0 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*.edmx text
*.resx text

*.ncrunchproject text
*.ncrunchsolution text

# Custom for Visual Studio
*.sln text eol=crlf merge=union
*.csproj text
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_nuget_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '8.x'
dotnet-version: '10.x'

- name: Check for Tag on Current Commit
run: |
Expand Down
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,6 @@ _TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover

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

# MightyMoose
*.mm.*
AutoTest.Net/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ For full API documentation, please visit [evidos.github.io](https://evidos.githu
### Example code
The following code is an example of how to create and start a sign transaction with two documents.
```c#
var settings = new SignHostApiClientSettings(
var settings = new SignhostApiClientSettings(
"AppName appkey",
"apikey or usertoken"));

var client = new SignHostApiClient(settings);
var client = new SignhostApiClient(settings);

var transaction = await client.CreateTransactionAsync(new Transaction {
Signers = new List<Signer> {
Expand Down
186 changes: 0 additions & 186 deletions src/SignhostAPIClient.Tests/APIResponses.Designer.cs

This file was deleted.

Loading