Skip to content

Commit 7997dd1

Browse files
ilkedgnATimmeh33
authored andcommitted
Update documentation
1 parent f2e8783 commit 7997dd1

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

.appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ for:
1212
- branches:
1313
only:
1414
- master
15+
- legacy
1516
environment:
1617
SH_VERSION_SUFFIX: ''
1718

1819
before_build:
1920
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER) { Set-AppveyorBuildVariable 'SH_VERSION_SUFFIX' 'alpha' }
20-
- dotnet tool install --global dotnet-sonarscanner
21-
- dotnet add "src/SignhostAPIClient.Tests/SignhostAPIClient.Tests.csproj" package coverlet.msbuild
21+
- dotnet tool install --global dotnet-sonarscanner --version 5.5.3
22+
- dotnet add "src/SignhostAPIClient.Tests/SignhostAPIClient.Tests.csproj" package coverlet.msbuild --version 3.1.0
2223
- cmd: dotnet restore "src\SignhostAPIClient.sln
2324

2425
build_script:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# Signhost client library
22
[![join gitter chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Evidos/signhost-api)
33
[![Build status](https://ci.appveyor.com/api/projects/status/696lddgivr6kkhsd/branch/master?svg=true)](https://ci.appveyor.com/project/MrJoe/signhostclientlibrary-xcr5f/branch/master)
4-
[![Nuget package](https://img.shields.io/nuget/v/SignhostClientLibrary.svg)](https://www.nuget.org/Packages/SignhostClientLibrary)
5-
[![Quality Gate](https://sonarcloud.io/api/project_badges/measure?project=SignhostAPIClient&metric=alert_status)](https://sonarcloud.io/dashboard?id=SignhostAPIClient)
4+
[![Nuget package](https://img.shields.io/nuget/v/EntrustSignhostClientLibrary.svg)](https://www.nuget.org/Packages/EntrustSignhostClientLibrary)
65

7-
This is a client library in c# to demonstrate the usage of the [signhost api](https://api.signhost.com/) using .net.
8-
You will need a valid APPKey and APIKey.
9-
You can request a APPKey for signhost at [ondertekenen.nl](https://portal.signhost.com/signup/api-aanvraag).
6+
This is a client library in c# to demonstrate the usage of the [Signhost API](https://api.signhost.com/) using .NET. You will need a valid APPKey and APIKey. You can request an APPKey [here](https://portal.signhost.com/signup/api-aanvraag).
107

118
### Install
129
Get it on NuGet:
@@ -54,3 +51,6 @@ await client.AddOrReplaceFileToTransactionAsync("PathOtherFile", transaction.Id,
5451
await client.StartTransactionAsync(transaction.Id);
5552

5653
```
54+
55+
## Migration Guides
56+
Please refer to the migration notes in our [migration guides](https://github.com/Evidos/SignhostClientLibrary/wiki/Migration-Guides).

src/SignhostAPIClient/SignhostAPIClient.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
<VersionBuildNumber Condition="'$(VersionBuildNumber)' == ''">0</VersionBuildNumber>
1414
<VersionPrefix>3.0.$(VersionBuildNumber)</VersionPrefix>
1515
<VersionSuffix Condition="'$(VersionSuffix)' == ''">$(SH_VERSION_SUFFIX)</VersionSuffix>
16-
<Authors>Evidos</Authors>
16+
<Authors>Entrust</Authors>
1717
<Product>Signhost</Product>
18-
<Copyright>Copyright 2016-2018 © Evidos</Copyright>
18+
<Copyright>Copyright © Entrust</Copyright>
1919
<PackageProjectUrl>https://github.com/Evidos/SignhostClientLibrary</PackageProjectUrl>
2020
<RepositoryType>git</RepositoryType>
21-
<PackageId>SignhostClientLibrary</PackageId>
21+
<PackageId>EntrustSignhostClientLibrary</PackageId>
2222
<PackageTags>sign;signing;digital signature;pdf</PackageTags>
2323
<PackageReleaseNotes>
2424
* 3.0.0 - Bumped verifications support and added .net core target
@@ -29,7 +29,7 @@
2929
* 2.1.0 - Lowered minimum framework from 4.5.2 to 4.5
3030
* 2.0.0 - First release using new multidoc API.
3131
</PackageReleaseNotes>
32-
<Company>Evidos</Company>
32+
<Company>Entrust</Company>
3333
<Description>A .NET library for the signhost.com api.</Description>
3434
<PublishRepositoryUrl>true</PublishRepositoryUrl>
3535
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>

0 commit comments

Comments
 (0)