Skip to content

Commit a4d0e07

Browse files
committed
feat: Added NuSpec file and NuGet badge
1 parent 65af3bd commit a4d0e07

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed

MLAPI.nuspec

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>MLAPI</id>
5+
<title>MLAPI</title>
6+
<version>0.1.0</version>
7+
<authors>Albin Corén</authors>
8+
<owners>TwoTen</owners>
9+
<licenseUrl>https://github.com/MidLevel/MLAPI/blob/master/LICENCE</licenseUrl>
10+
<projectUrl>https://github.com/MidLevel/MLAPI</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>Highlevel networking library for Unity</description>
13+
<copyright>Copyright © 2019 Albin Corén</copyright>
14+
<tags>unity networking high level</tags>
15+
<dependencies>
16+
<group targetFramework="net35"/>
17+
<group targetFramework="net45"/>
18+
<group targetFramework="net471"/>
19+
<group targetFramework="netstandard2.0" />
20+
</dependencies>
21+
</metadata>
22+
<files>
23+
<file src="LICENCE" target="LICENCE" />
24+
<file src="MLAPI/bin/$configuration$/net35/*" target="ref/net35"/>
25+
<file src="MLAPI/bin/$configuration$/net45/*" target="ref/net45"/>
26+
<file src="MLAPI/bin/$configuration$/net471/*" target="ref/net471"/>
27+
<file src="MLAPI/bin/$configuration$/netstandard2.0/*" target="ref/netstandard2.0"/>
28+
<file src="Libraries/Unity/UnityEngine*" target="ref/net35"/>
29+
<file src="Libraries/Unity/UnityEngine*" target="ref/net45"/>
30+
<file src="Libraries/Unity/UnityEngine*" target="ref/net471"/>
31+
<file src="Libraries/Unity/UnityEngine*" target="ref/netstandard2.0"/>
32+
</files>
33+
</package>

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
[![](https://i.imgur.com/d0amtqs.png)](https://midlevel.github.io/MLAPI/)
22

33
[![GitHub Release](https://img.shields.io/github/release/MidLevel/MLAPI.svg?logo=github)](https://github.com/MidLevel/MLAPI/releases)
4+
[![NuGet Release](https://img.shields.io/nuget/v/MLAPI.svg?logo=nuget)](https://www.nuget.org/packages/MLAPI/)
45
[![Github All Releases](https://img.shields.io/github/downloads/MidLevel/MLAPI/total.svg?logo=github&color=informational)](https://github.com/MidLevel/MLAPI/releases)
6+
57
[![Discord](https://img.shields.io/discord/449263083769036810.svg?label=discord&logo=discord&color=informational)](https://discord.gg/FM8SE9E)
68
[![Build Status](https://img.shields.io/appveyor/ci/midlevel/mlapi/master.svg?logo=appveyor)](https://ci.appveyor.com/project/MidLevel/mlapi/branch/master)
79
[![AppVeyor Tests](https://img.shields.io/appveyor/tests/midlevel/mlapi/master.svg?logo=AppVeyor)](https://ci.appveyor.com/project/MidLevel/mlapi/build/tests)

0 commit comments

Comments
 (0)