forked from roblans/ZWave4Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZWave4Net.nuspec
More file actions
37 lines (37 loc) · 1.71 KB
/
ZWave4Net.nuspec
File metadata and controls
37 lines (37 loc) · 1.71 KB
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
30
31
32
33
34
35
36
37
<?xml version="1.0"?>
<package >
<metadata>
<id>ZWave4Net</id>
<title>ZWave4Net</title>
<description>
ZWave4Net is a .NET library that interfaces with the Aeotec / Aeon Labs Z-Stick. It uses an event-driven, non-blocking model that makes it lightweight and efficient.
This package is compatible with the following .net platforms:
- Managed Framework: net45
- Portable Class Library: net45 + win8
- Universal App Platform: win10
- .NET Standard: 2.0 (uses SerialPortStream package for serial port)
- .NET Core: 2.0 (uses SerialPortStream package for serial port)
</description>
<summary>ZWave4Net is a .NET library that interfaces with the Aeotec / Aeon Labs Z-Stick</summary>
<version>1.0.0.0</version>
<authors>Rob Lans</authors>
<copyright>© 2015 Rob Lans</copyright>
<projectUrl>https://github.com/roblans/ZWave4Net</projectUrl>
<tags>zwave z-wave home automation Aeotec Aeon</tags>
<dependencies>
<group targetFramework="netcoreapp2.0">
<dependency id="SerialPortStream" version="2.1.4" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="SerialPortStream" version="2.1.4" />
</group>
</dependencies>
</metadata>
<files>
<file src="ZWave.net45\bin\Release\ZWave.dll" target="lib\net45" />
<file src="ZWave.portable-net45+win8\bin\Release\ZWave.dll" target="lib\portable-net45+win8" />
<file src="ZWave.uap10.0\bin\Release\ZWave.dll" target="lib\uap10.0" />
<file src="ZWave.core2.0\bin\Release\netcoreapp2.0\ZWave.dll" target="lib\netcoreapp2.0" />
<file src="ZWave.NetStandard2.0\bin\Release\netstandard2.0\ZWave.dll" target="lib\netstandard2.0" />
</files>
</package>