67 lines
3.0 KiB
XML
67 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>BlubbFish.IoT.Zway</RootNamespace>
|
|
<AssemblyName>Zway</AssemblyName>
|
|
<PackageId>Zway.IoT.BlubbFish</PackageId>
|
|
<Version>1.6.0</Version>
|
|
<NeutralLanguage>de-DE</NeutralLanguage>
|
|
<Description>Library that speaks with zwave module/server</Description>
|
|
<Authors>BlubbFish</Authors>
|
|
<Company>BlubbFish</Company>
|
|
<Copyright>Copyright © 2017 - 15.01.2022</Copyright>
|
|
<PackageLicenseFile>LICENCE</PackageLicenseFile>
|
|
<PackageProjectUrl>https://git.blubbfish.net/vs_projects/Zway</PackageProjectUrl>
|
|
<RepositoryUrl>https://git.blubbfish.net/vs_projects/Zway.git</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageReleaseNotes>
|
|
1.6.0 - 2022-01-15 - Refactoring is the key
|
|
1.5.1 - 2018-10-29 - Tiny fix for nullpointer exception
|
|
1.5.0 - 2018-09-29 - Throw Exception if 3 times failed to connect to Raspberry server, add 3 new commandlcasses to IgnoredClasses
|
|
1.4.4 - 2018-06-02 - Ignore Inclusioncontroller
|
|
1.4.3 - 2018-05-12 - Fixing Issue with Math.Abs(l)
|
|
1.4.2.0 - 2018-05-10 - Some sensors make wrong measurements near 0 not exactly 0, so ABS(value) >= 0.1 is alse false
|
|
1.4.1.0 - 2018-05-07 - fixing Senml topics and data
|
|
1.4.0.0 - 2018-05-03 - Create Senml Messages for Linksmart
|
|
1.3.6.0 - 2018-01-01 - Better levelcheck and Alarmsensor added
|
|
1.3.5.3 - 2017-12-25 - Change Level to numeric and create State for Bollean values, because telegraf only parse numeric
|
|
1.3.5.2 - 2017-12-24 - Check to avoid megapeaks in data now also for temperature
|
|
1.3.5.1 - 2017-12-23 - Check to avoid megapeaks in Data
|
|
1.3.5.0 - 2017-12-22 - Add Alarm and SceneControllerConf
|
|
1.3.4.1 - 2017-12-21 - SensorBinary and Fixing
|
|
1.3.4.0 - 2017-12-19 - Fixing Json Names
|
|
1.3.3.0 - 2017-12-19 - fixing polling once bug
|
|
1.3.2.0 - 2017-12-18 - Forgot some settings, now configuration setting also works again
|
|
1.3.1.0 - 2017-12-17 - Tiny fix for mqtt
|
|
1.3.0.0 - 2017-12-17 - Simpler CommandClass
|
|
1.2.0.0 - 2017-12-06 - F4G Faker
|
|
1.1.2.0 - 2017-12-03 - Tiny Fix
|
|
1.1.1.0 - 2017-11-25 - Massive improvement
|
|
1.1.0.0 - 2017-11-20 - First working Version
|
|
1.0.0.0 - 2017-10-29 - Init
|
|
</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Librarys\litjson\litjson\litjson.csproj" />
|
|
<ProjectReference Include="..\..\Utils\Iot-Interfaces\Iot-Interfaces\Iot-Interfaces.csproj" />
|
|
<ProjectReference Include="..\..\Utils\Utils\Utils\Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="../CHANGELOG.md" />
|
|
<Content Include="../CONTRIBUTING.md" />
|
|
<Content Include="../LICENSE" />
|
|
<Content Include="../README.md" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|