-
Notifications
You must be signed in to change notification settings - Fork 75
/
.nuspec
33 lines (30 loc) · 1.46 KB
/
.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<targetFramework>netstandard2.0</targetFramework>
<id>Binance.Spot</id>
<title>Binance Connector</title>
<description>This is a lightweight library that works as a connector to Binance public API.</description>
<icon>icon.png</icon>
<tags>binance api binance-api spot exchange wrapper connector standard dotnet csharp fsharp</tags>
<license type="file">LICENSE.md</license>
<releaseNotes>https://github.com/binance/binance-connector-dotnet/blob/master/CHANGELOG.md</releaseNotes>
<readme>README.md</readme>
<repository type="git" url="https://github.com/binance/binance-connector-dotnet" branch="master"></repository>
<version>4.1.0</version>
<authors>binance</authors>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Newtonsoft.Json" version="13.0.1" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release\netstandard2.0\*.dll" target="lib\netstandard2.0" />
<file src="bin\Release\netstandard2.0\*.xml" target="lib\netstandard2.0" />
<file src="..\..\images\icon.png" target="" />
<file src="..\..\README.md" target="" />
<file src="..\..\LICENSE.md" target="" />
<file src="..\..\CHANGELOG.md" target="" />
</files>
</package>