|
1 | 1 | # Getting Started |
2 | 2 | This is a quck start guide on getting very basic presence working. |
3 | 3 |
|
| 4 | +## Platforms |
| 5 | +For non-dotnet platforms, there are a variety of guides to get you started |
| 6 | + |
| 7 | +| Platform | Support | Documentation | |
| 8 | +|----------|---------|---------------| |
| 9 | +| .NET App | ✅ Full Support | [Getting Started](./introduction.md#download) | |
| 10 | +| [Godot](https://godotengine.org/) | 🚧 WIP Support | [lachee/discord-rpc-godot](https://github.com/Lachee/discord-rpc-godot/) | |
| 11 | +| [Mono](https://www.mono-project.com/) | ⚠️ Seperate Guide | [Mono Guide](./mono.md) | |
| 12 | +| [MonoGame](https://monogame.net/) | ⚠️ Seperate Guide | [Mono Guide](./mono.md) | |
| 13 | +| [Unity3D](https://unity.com/) | ✅ Full Support | [lachee/discord-rpc-unity](https://github.com/lachee/discord-rpc-unity/) | |
| 14 | +| [UWP](https://learn.microsoft.com/en-us/windows/uwp/get-started/universal-application-platform-guide) | ⚠️ Seperate Guide | [UWP Guide](./uwp.md) | |
| 15 | + |
| 16 | +> ✅ Full Support - works out of the box |
| 17 | +> ⚠️ Seperate Guide - requires some additional setup |
| 18 | +> 🚧 WIP Support - actively being worked on |
| 19 | +
|
| 20 | + |
| 21 | +The following guide will assume a standard .NET application. |
| 22 | + |
4 | 23 | ## Download |
5 | 24 |
|
6 | 25 | [](https://www.nuget.org/packages/DiscordRichPresence/) |
7 | 26 | [](https://github.com/Lachee/discord-rpc-csharp/tags) |
8 | 27 |
|
9 | 28 | ```sh |
10 | | -nuget install DiscordRichPresence |
| 29 | +dotnet add package DiscordRichPresence |
11 | 30 | ``` |
12 | 31 |
|
13 | | -Install the package [with NuGet](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-nuget-cli). This can be done within the [UI for Visual Studio](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-visual-studio) |
| 32 | +Download the package with [NuGet](https://www.nuget.org/packages/DiscordRichPresence/) to start using in your project. |
14 | 33 |
|
15 | 34 | Unpackaged binaries can be found in the project's [Releases](https://github.com/Lachee/discord-rpc-csharp/releases). |
16 | 35 |
|
@@ -105,4 +124,10 @@ The [DiscordRPC.Example](https://github.com/Lachee/discord-rpc-csharp/blob/maste |
105 | 124 |
|
106 | 125 | ```sh |
107 | 126 | dotnet run --framework net9 --project DiscordRPC.Example --example=Basic |
108 | | -``` |
| 127 | +``` |
| 128 | + |
| 129 | +# Need More Help? |
| 130 | + |
| 131 | +[](https://github.com/Lachee/discord-rpc-csharp/issues) |
| 132 | + |
| 133 | +Still stuck? Make a [new GitHub issue](https://github.com/Lachee/discord-rpc-csharp/issues/new)! |
0 commit comments