forked from jgoz/netzmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetzmq.nuspec
25 lines (25 loc) · 1.63 KB
/
netzmq.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>netzmq</id>
<version>0.6.0</version>
<title>netzmq</title>
<authors>John Gozde</authors>
<owners>John Gozde</owners>
<projectUrl>https://github.com/jgoz/netzmq</projectUrl>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
<copyright>netzmq is copyright by John Gozde. The ZeroMQ library that this project depends on is LGPL licensed, written by Martin Sustrik and Pieter Hintjens, and copyright by iMatix Corporation.</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>High-performance .NET bindings for ZeroMQ.</summary>
<description>The netzmq project contains .NET bindings for ZeroMQ, an open-source, high performance transport layer. The project provides an idiomatic, test-friendly API and targets the Any CPU platform. Everything needed to write ZeroMQ programs is bundled in the netzmq assembly for both 32- and 64-bit platforms, including the native ZeroMQ libraries themselves. The native libraries are protected by the LGPL licence and are included as unmodified compiled binaries. The full libzmq source is available from https://github.com/zeromq/. This version of netzmq targets libzmq 3.0.</description>
<language>en-US</language>
<tags>zeromq zmq messaging transport distributed</tags>
</metadata>
<files>
<file src="package\*.dll" target="lib\net40"/>
<file src="package\*.pdb" target="lib\net40"/>
<file src="package\*.xml" target="lib\net40"/>
<file src="LICENSE"/>
<file src="NOTICE"/>
</files>
</package>