-
Notifications
You must be signed in to change notification settings - Fork 0
/
IfKThenX.csproj
32 lines (28 loc) · 1.17 KB
/
IfKThenX.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>IfKThenX</Title>
<Version>0.1.0-alpha1</Version>
<AssemblyVersion>0.1.0</AssemblyVersion>
<Authors>Roland Braun</Authors>
<Description>A logic layer that extends your KNX system with multi-dependent actions. It enables to define states of a bus, which are then monitored and handled with defined reactions.</Description>
<Copyright>Roland Braun</Copyright>
<PackageProjectUrl>https://github.com/RolandBraunDev/IfKThenX</PackageProjectUrl>
<RepositoryUrl>https://github.com/RolandBraunDev/IfKThenX</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>knx bus falcon smarthome home</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Knx.Falcon.Sdk" Version="6.0.4942" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>