-
Notifications
You must be signed in to change notification settings - Fork 13
/
Mono.Net.HttpListener.nuspec
executable file
·21 lines (21 loc) · 1.22 KB
/
Mono.Net.HttpListener.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>Mono.Net.HttpListener</id>
<version>1.0.0.0</version>
<title>Mono.Net.HttpListener</title>
<authors>Jb Evain</authors>
<owners>Jb Evain</owners>
<licenseUrl>http://opensource.org/licenses/mit-license.php</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectUrl>http://github.com/jbevain/mono.net.httplistener/</projectUrl>
<summary>A fully managed HttpListener implementation extracted from Mono.</summary>
<description>A fully managed HttpListener implementation extracted from Mono. It's not as complete as the .net implementation of System.Net.HttpListener, but it doesn't require Administrator rights to listen on all interfaces, making it perfect to serve http content for test servers.</description>
<language>en-US</language>
<tags>http listener httplistener server mono</tags>
</metadata>
<files>
<file src="bin\net_4_0_Release\*.dll" target="lib/net40" />
<file src="bin\net_4_5_Release\*.dll" target="lib/net45" />
</files>
</package>