forked from Unity-Technologies/com.unity.netcode.gameobjects
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added NuSpec file and NuGet badge
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>MLAPI</id> | ||
<title>MLAPI</title> | ||
<version>0.1.0</version> | ||
<authors>Albin Corén</authors> | ||
<owners>TwoTen</owners> | ||
<licenseUrl>https://github.com/MidLevel/MLAPI/blob/master/LICENCE</licenseUrl> | ||
<projectUrl>https://github.com/MidLevel/MLAPI</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Highlevel networking library for Unity</description> | ||
<copyright>Copyright © 2019 Albin Corén</copyright> | ||
<tags>unity networking high level</tags> | ||
<dependencies> | ||
<group targetFramework="net35"/> | ||
<group targetFramework="net45"/> | ||
<group targetFramework="net471"/> | ||
<group targetFramework="netstandard2.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="LICENCE" target="LICENCE" /> | ||
<file src="MLAPI/bin/$configuration$/net35/*" target="ref/net35"/> | ||
<file src="MLAPI/bin/$configuration$/net45/*" target="ref/net45"/> | ||
<file src="MLAPI/bin/$configuration$/net471/*" target="ref/net471"/> | ||
<file src="MLAPI/bin/$configuration$/netstandard2.0/*" target="ref/netstandard2.0"/> | ||
<file src="Libraries/Unity/UnityEngine*" target="ref/net35"/> | ||
<file src="Libraries/Unity/UnityEngine*" target="ref/net45"/> | ||
<file src="Libraries/Unity/UnityEngine*" target="ref/net471"/> | ||
<file src="Libraries/Unity/UnityEngine*" target="ref/netstandard2.0"/> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters