https://github.com/watson-developer-cloud/dotnet-standard-sdk
:new::new::new:.NET Standard library to access Watson Services.
https://github.com/watson-developer-cloud/dotnet-standard-sdk
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.8%) to scientific vocabulary
Keywords
Repository
:new::new::new:.NET Standard library to access Watson Services.
Basic Info
- Host: GitHub
- Owner: watson-developer-cloud
- License: apache-2.0
- Language: C#
- Default Branch: master
- Homepage: https://www.nuget.org/profiles/ibm-watson
- Size: 81 MB
Statistics
- Stars: 150
- Watchers: 29
- Forks: 116
- Open Issues: 0
- Releases: 56
Topics
Metadata Files
README.md
Watson Developer Cloud .NET Standard SDK
Deprecation
This repo and the Nuget package associated with it are being deprecated. While this repo will no longer see active support from the IBM team, contributions by the community via PRs are still welcomed and will be reviewed. Keep in mind, updates will no longer be published to Nuget and changes made after this update will need to be built independently.
Deprecated builds
The .NET Standard SDK uses Watson services, a collection of REST APIs that use cognitive computing to solve complex problems.
Announcements
Tone Analyzer Deprecation
As of this major release, 6.0.0, the Tone Analyzer API has been removed in preparation for deprecation. If you wish to continue using this sdk to make calls to Tone Analyzer until its final deprecation, you will have to use a previous version. On 24 February 2022, IBM announced the deprecation of the Tone Analyzer service. The service will no longer be available as of 24 February 2023. As of 24 February 2022, you will not be able to create new instances. Existing instances will be supported until 24 February 2023.
As an alternative, we encourage you to consider migrating to the Natural Language Understanding service on IBM Cloud. With Natural Language Understanding, tone analysis is done by using a pre-built classifications model, which provides an easy way to detect language tones in written text. For more information, see Migrating from Watson Tone Analyzer Customer Engagement endpoint to Natural Language Understanding.
Natural Language Classifier Deprecation
As of this major release, 6.0.0, the NLC API has been removed in preparation for deprecation. If you wish to continue using this sdk to make calls to NLC until its final deprecation, you will have to use a previous version. On 9 August 2021, IBM announced the deprecation of the Natural Language Classifier service. The service will no longer be available from 8 August 2022. As of 9 September 2021, you will not be able to create new instances. Existing instances will be supported until 8 August 2022. Any instance that still exists on that date will be deleted.
As an alternative, we encourage you to consider migrating to the Natural Language Understanding service on IBM Cloud that uses deep learning to extract data and insights from text such as keywords, categories, sentiment, emotion, and syntax, along with advanced multi-label text classification capabilities, to provide even richer insights for your business or industry. For more information, see Migrating to Natural Language Understanding.
Updating endpoint URLs from watsonplatform.net
Watson API endpoint URLs at watsonplatform.net are changing and will not work after 26 May 2021. Update your calls to use the newer endpoint URLs. For more information, see https://cloud.ibm.com/docs/watson?topic=watson-endpoint-change.
Before you begin
Ensure you have the following prerequisites:
- You need an IBM Cloud account.
- Install Visual Studio for Windows, OSX or Linux.
- Install .NET Core.
Installing the Watson .NET Standard SDK
This SDK provides classes and methods to access the following Watson services:
- Assistant
- Compare Comply (deprecated)
- Discovery
- Language Translator
- Natural Language Understanding
- Natural Language Classifier (deprecated)
- Personality Insights (deprecated)
- Speech to Text
- Text to Speech
- Tone Analyzer
- Visual Recognition (deprecated)
You can get the latest SDK packages through NuGet or manually here.
.NET Standard 2.0
The Watson .NET Standard SDK conforms to .NET Standard 2.0. It is implemented by .NET Core 2.0, .NET Framework 4.6.1 and Mono 5.4. See Microsoft documentation for details.
Authentication
Watson services are migrating to token-based Identity and Access Management (IAM) authentication.
- With some service instances, you authenticate to the API by using IAM.
- In other instances, you authenticate by providing the username and password for the service instance.
- If you're using a Watson service on ICP, you'll need to authenticate in a specific way.
Getting credentials
To find out which authentication to use, view the service credentials. You find the service credentials for authentication the same way for all Watson services:
- Go to the IBM Cloud Dashboard page.
- Either click an existing Watson service instance or click Create resource > AI and create a service instance.
- Copy the
urland eitherapikeyorusernameandpassword. Click Show if the credentials are masked.
In your code, you can use these values in the service constructor or with a method call after instantiating your service.
IAM
Some services use token-based Identity and Access Management (IAM) authentication. IAM authentication uses a service API key to get an access token that is passed with the call. Access tokens are valid for approximately one hour and must be regenerated.
You supply either an IAM service API key or an access token:
- Use the API key to have the SDK manage the lifecycle of the access token. The SDK requests an access token, ensures that the access token is valid, and refreshes it if necessary.
- Use the access token if you want to manage the lifecycle yourself. For details, see Authenticating with IAM tokens. If you want to switch to API key override your stored IAM credentials with an IAM API key.
Supplying the IAM API key
cs
void Example()
{
IamAuthenticator authenticator = new IamAuthenticator(
apikey: "{apikey}");
var service = new AssistantService("{versionDate}", authenticator);
service.SetServiceUrl("{serviceUrl}");
}
Supplying the access token
cs
void Example()
{
BearerTokenAuthenticator authenticator = new BearerTokenAuthenticator(
bearerToken: "{bearerToken}");
var service = new AssistantService("{versionDate}", authenticator);
service.SetServiceUrl("{serviceUrl}");
}
Username and password
cs
void Example()
{
BasicAuthenticator authenticator = new BasicAuthenticator(
username: "{username}",
password: "{password}");
var service = new AssistantService("{versionDate}", authenticator);
service.SetServiceUrl("{serviceUrl}");
}
ICP
Like IAM, you can pass in credentials to let the SDK manage an access token for you or directly supply an access token to do it yourself.
Letting the SDK manage the token
cs
void Example()
{
CloudPakForDataAuthenticator authenticator = new CloudPakForDataAuthenticator(
url: "https://{cp4d_cluster_host}{:port}",
username: "{username}",
password: "{password}");
var service = new AssistantService("{version-date}", authenticator);
service.SetServiceUrl("{serviceUrl}");
var results = service.Message("{workspace-id}", "{message-request}");
}
Managing the token yourself
cs
void Example()
{
BearerTokenAuthenticator authenticator = new BearerTokenAuthenticator(
bearerToken: "{bearerToken}");
var service = new AssistantService("{version-date}", authenticator);
service.SetServiceUrl("{serviceUrl}");
var results = service.Message("{workspace-id}", "{message-request}");
}
Be sure to both disable SSL verification when authenticating and set the endpoint explicitly to the URL given in ICP.
Supplying credentials
There are two ways to supply the credentials you found above to the SDK for authentication.
Credential file (easier!)
With a credential file, you just need to put the file in the right place and the SDK will do the work of parsing it and authenticating. You can get this file by clicking the Download button for the credentials in the Manage tab of your service instance.
The file downloaded will be called ibm-credentials.env. This is the name the SDK will search for and must be preserved unless you want to configure the file path (more on that later). The SDK will look for your ibm-credentials.env file in the following places (in order):
- The top-level directory of the project you're using the SDK in
- Your system's home directory
As long as you set that up correctly, you don't have to worry about setting any authentication options in your code. So, for example, if you created and downloaded the credential file for your Discovery instance, you just need to do the following:
cs
AssistantService service = new AssistantService("{version-date}");
var listWorkspacesResult = service.ListWorkspaces();
And that's it!
If you're using more than one service at a time in your code and get two different ibm-credentials.env files, just put the contents together in one ibm-credentials.env file and the SDK will handle assigning credentials to their appropriate services.
If you would like to configure the location/name of your credential file, you can set an environment variable called IBM_CREDENTIALS_FILE. This will take precedence over the locations specified above. Here's how you can do that:
bash
export IBM_CREDENTIALS_FILE="{path}"
where {path} is something like /home/user/Downloads/{file_name}.env.
Manually
If you'd prefer to set authentication values manually in your code, the SDK supports that as well. The way you'll do this depends on what type of credentials your service instance gives you.
Custom Request Headers
You can send custom request headers by adding them to the service using .WithHeader({key}, {value}).
cs
void Example()
{
IamAuthenticator authenticator = new IamAuthenticator(
apikey: "{apikey}");
var service = new AssistantService("{version-date}", authenticator);
service.SetServiceUrl("{serviceUrl}");
service.WithHeader("X-Watson-Metadata", "customer_id=some-assistant-customer-id");
var results = service.Message("{workspace-id}", "{message-request}");
}
Response Headers, Status Code and Raw Json
You can get the response headers, status code and the raw json response in the result object. ```cs void Example() { IamAuthenticator authenticator = new IamAuthenticator( apikey: "{apikey}"); var service = new AssistantService("{version-date}", authenticator); service.SetServiceUrl("{serviceUrl}"); var results = service.Message("{workspace-id}", "{message-request}");
var responseHeaders = results.Headers; // The response headers
var responseJson = results.Response; // The raw response json
var statusCode = results.StatusCode; // The response status code
} ```
Self signed certificates
You can disable SSL verification on calls to Watson (only do this if you really mean to!).
cs
void Example()
{
CloudPakForDataAuthenticator authenticator = new CloudPakForDataAuthenticator(
url: "https://{cp4d_cluster_host}{:port}",
username: "{username}",
password: "{password}",
disableSslVerification: true);
var service = new AssistantService("{version-date}", authenticator);
service.SetServiceUrl("{serviceUrl}");
var results = service.Message("{workspace-id}", "{message-request}");
}
Transaction IDs
Every SDK call returns a response with a transaction ID in the X-Global-Transaction-Id header. Together the service instance region, this ID helps support teams troubleshoot issues from relevant logs.
```cs
AssistantService service = new AssistantService("{version-date}");
DetailedResponse
try { listWorkspacesResult = service.ListWorkspaces();
// Global transaction id on successful api call
listWorkspacesResult.Headers.TryGetValue("x-global-transaction-id", out object globalTransactionId);
} catch(Exception e) { // Global transaction on failed api call is contained in the error message Console.WriteLine("error: " + e.Message); } ```
However, the transaction ID isn't available when the API doesn't return a response for some reason. In that case, you can set your own transaction ID in the request. For example, replace <my-unique-transaction-id> in the following example with a unique transaction ID.
cs
void Example()
{
IamAuthenticator authenticator = new IamAuthenticator(
apikey: "{apikey}");
var service = new AssistantService("{version-date}", authenticator);
service.SetServiceUrl("{serviceUrl}");
service.WithHeader("X-Global-Transaction-Id", "<my-unique-transaction-id>");
var results = service.Message("{workspace-id}", "{message-request}");
}
Use behind a proxy
To use the SDK behind an HTTP proxy, you need to set either the http_proxy or https_proxy environment variable.
You can set this in the application environment using:
set http_proxy=http://proxy.server.com:3128
from the cmd.
You can also set this in the application using:
cs
Environment.SetEnvironmentVariable("http_proxy", "http://proxy.server.com:3128");
Documentation
Click here for documentation by release and branch.
Questions
If you have issues with the APIs or have a question about the Watson services, see Stack Overflow.
Open Source @ IBM
Find more open source projects on the IBM Github Page.
License
This library is licensed under Apache 2.0. Full license text is available in LICENSE.
Contributing
See CONTRIBUTING.md.
Featured projects
We'd love to highlight cool open-source projects that use this SDK! If you'd like to get your project added to the list, feel free to make an issue linking us to it.
Owner
- Name: IBM Watson APIs
- Login: watson-developer-cloud
- Kind: organization
- Location: USA
- Website: https://www.ibm.com/watson/developer/
- Twitter: ibmwatsonx
- Repositories: 97
- Profile: https://github.com/watson-developer-cloud
A collection of SDKs that work with the Watson REST APIs. For more information about the APIs, see https://cloud.ibm.com/docs?tab=api-docs&category=ai
GitHub Events
Total
- Watch event: 2
- Delete event: 23
- Issue comment event: 24
- Push event: 1
- Pull request event: 24
Last Year
- Watch event: 2
- Delete event: 23
- Issue comment event: 24
- Push event: 1
- Pull request event: 24
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Ajiemar Santiago | a****r@g****m | 1,230 |
| Kevin Kowalski | k****i@i****m | 169 |
| semantic-release-bot | s****t@m****t | 56 |
| Nanwarin Chantarutai | n****n@i****m | 26 |
| ATILATosta | A****a@D****2 | 24 |
| atosta | a****a@b****m | 22 |
| Angelo Paparazzi | a****i@i****m | 19 |
| atilatosta | a****a@g****m | 18 |
| Maykon . | m****y@h****m | 15 |
| Michael G Mosca | m****m@u****m | 7 |
| Shawn Mclean | s****n@g****m | 6 |
| Átila Mendes da Silva Tosta | a****a@h****m | 3 |
| Mamoon Raja | m****1@g****m | 3 |
| maykonsIBM | m****s@b****m | 3 |
| Allen Dean | a****n@u****m | 2 |
| Andrei Luís | a****8@h****m | 2 |
| Jamie R Rytlewski | j****t@g****m | 2 |
| Thiago Loureiro | t****u@o****m | 2 |
| Watson Github Bot | w****x@u****m | 2 |
| ryan susman | r****n@g****m | 2 |
| CHRISTOPHER C FALONE | c****e@u****m | 2 |
| German Attanasio | g****o@g****m | 1 |
| Harrison Saylor | h****r@g****m | 1 |
| JessePerry | J****y | 1 |
| Kings Odigie | K****e@i****m | 1 |
| michelle-miller | m****r@u****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 49
- Total pull requests: 516
- Average time to close issues: almost 2 years
- Average time to close pull requests: 7 months
- Total issue authors: 7
- Total pull request authors: 9
- Average comments per issue: 11.29
- Average comments per pull request: 2.14
- Merged pull requests: 204
- Bot issues: 0
- Bot pull requests: 254
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- acollard (2)
- RMichaelPickering (1)
- Jamie22 (1)
- GoncaloBastos (1)
- darkmatter2222 (1)
- dependabot[bot] (1)
- mitestojanov1990 (1)
- FurkanGozukara (1)
Pull Request Authors
- dependabot[bot] (74)
- kevinkowa (19)
- mediumTaj (8)
- Mikemosca (7)
- apaparazzi0329 (3)
- lgtm-com[bot] (2)
- nan2iz (2)
- NeilSorensen (1)
- Hsaylor (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- 499 dependencies
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- Newtonsoft.Json 12.0.3
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.8.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Cloud.SDK.Core 1.3.1
- IBM.Watson.Common 6.1.0
- JsonSubTypes 1.6.0
- Newtonsoft.Json 12.0.3
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- IBM.Cloud.SDK.Core 1.3.1
- MSTest.TestAdapter 1.1.8-rc
- MSTest.TestFramework 1.0.8-rc
- Microsoft.Extensions.Configuration 1.0.2
- Microsoft.Extensions.Configuration.Json 1.0.2
- Microsoft.NET.Test.Sdk 15.5.0
- NSubstitute 4.2.1
- Newtonsoft.Json 12.0.3
- OpenCover 4.7.922
- ReportGenerator 4.1.5
- coveralls.net 0.7.0
- actions/checkout v2 composite
- actions/setup-dotnet v1 composite
- actions/checkout v2 composite
- actions/setup-dotnet v1 composite
- actions/setup-node v1 composite
- actions/checkout v2 composite
- actions/setup-dotnet v1 composite
- voxmedia/github-action-slack-notify-build v1 composite
- mcr.microsoft.com/dotnet/core/sdk 2.2 build