-
Notifications
You must be signed in to change notification settings - Fork 6
/
SSDP.nuspec
29 lines (27 loc) · 1.5 KB
/
SSDP.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>SSDP.Portable</id>
<version>1.0.31</version>
<authors>Stéphane Mitermite</authors>
<owners>Stéphane Mitermite</owners>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">GPL-2.0-only</license>
<projectUrl>https://github.com/kakone/SSDP</projectUrl>
<description>.NET Standard implementation of Simple Service Discovery Protocol (with AV transport service control point sample)</description>
<copyright>Copyright © 2019 Stéphane Mitermite</copyright>
<tags>ssdp upnp simple service discovery protocol device controlpoint standard</tags>
<dependencies>
<dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
<dependency id="System.Net.NetworkInformation" version="4.3.0" exclude="Build,Analyzers" />
<dependency id="System.Xml.XmlSerializer" version="4.3.0" exclude="Build,Analyzers" />
</dependencies>
</metadata>
<files>
<file src="UPnP\bin\Release\netstandard1.4\UPnP.dll" target="lib\netstandard1.4\UPnP.dll" />
<!-- UWP reference assemblies -->
<file src="UPnP\bin\Release\netstandard1.4\UPnP.dll" target="lib\UAP10.0.10240\UPnP.dll" />
<file src="UPnP.UWP\bin\Release\UPnP.UWP.dll" target="lib\UAP10.0.10240\UPnP.UWP.dll" />
<file src="UPnP\bin\Release\netstandard1.4\UPnP.dll" target="lib\UAP10.0.16299\UPnP.dll" />
</files>
</package>