Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve documentation #277

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@

This is a third party implementation of Slack's API written in C#. This supports their WebAPI as well as their Real Time Messaging API.

## How can I get it?

First, [install NuGet](https://docs.microsoft.com/en-gb/nuget/install-nuget-client-tools). Then, install [SlackAPI](https://www.nuget.org/packages/SlackAPI/) from the package manager console:

```bash
# dotnet cli
$ dotnet add package SlackAPI

# alternatively, use a package manager
$ Install-Package SlackAPI
```

# Examples

Some examples can be found on the Wiki: https://github.com/Inumedia/SlackAPI/wiki/Examples
Expand Down