-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetDiscordRpc.nuspec
37 lines (32 loc) · 1.7 KB
/
NetDiscordRpc.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/21.0.07/nuspec.xsd">
<id>NetDiscordRpc</id>
<version>1.0.2</version>
<title>.NET Discord RPC</title>
<authors>Julian van Schijndel</authors>
<developmentDependency>false</developmentDependency>
<language>C#</language>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<projectUrl>https://github.com/julianvschijndel/net-discord-rpc</projectUrl>
<repository type="git" url="https://github.com/julianvschijndel/net-discord-rpc"/>
<icon>images\icon.png</icon>
<description>A Discord RPC (Rich Presence Client) library written in C#. This is a edited version of @Lachee his Discord Rich Presence package, so some credits of this package goes to him. When trying to use his package a lot of things went wrong, so I build my own, to check if it would work. Below are some of the thing I've edited.</description>
<copyright>(c) Copyright ZeldaDev 2021</copyright>
<tags>DiscordRPC Rich Presence</tags>
<releaseNotes>First release</releaseNotes>
<summary>A .NET implementation for your own custom Discord Rich Precense.</summary>
<dependencies>
<group targetFramework="net5">
<dependency id="Newtonsoft.Json" version="13.0.1" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.Win32.Registry" version="4.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="images\icon.png" target="images\"/>
</files>
</package>