Skip to content

Commit 14e0318

Browse files
committed
Updated HomeAutio.Mqtt.Core
1 parent 00c2b1d commit 14e0318

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/HomeAutio.Mqtt.Ecobee/HomeAutio.Mqtt.Ecobee.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<PackageReference Include="I8Beef.CodeAnalysis.RuleSet" Version="1.0.15">
3333
<PrivateAssets>all</PrivateAssets>
3434
</PackageReference>
35-
<PackageReference Include="HomeAutio.Mqtt.Core" Version="3.0.0.45" />
35+
<PackageReference Include="HomeAutio.Mqtt.Core" Version="3.0.0.49" />
3636
<PackageReference Include="I8Beef.Ecobee" Version="2.2.0.66" />
3737
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.1.1" />
3838
<PackageReference Include="Microsoft.Extensions.Hosting" Version="2.1.1" />

src/HomeAutio.Mqtt.Ecobee/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ private static IHostBuilder CreateHostBuilder(IConfiguration config)
9999
BrokerIp = config.GetValue<string>("mqtt:brokerIp"),
100100
BrokerPort = config.GetValue<int>("mqtt:brokerPort"),
101101
BrokerUsername = config.GetValue<string>("mqtt:brokerUsername"),
102-
BrokerPassword = config.GetValue<string>("mqtt:brokerPassword")
102+
BrokerPassword = config.GetValue<string>("mqtt:brokerPassword"),
103+
BrokerUseTls = config.GetValue<bool>("mqtt:brokerUseTls", false)
103104
};
104105

105106
return new EcobeeMqttService(

src/HomeAutio.Mqtt.Ecobee/appsettings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
"brokerIp": "localhost",
99
"brokerPort": 1883,
1010
"brokerUsername": null,
11-
"brokerPassword": null
11+
"brokerPassword": null,
12+
"brokerUseTls": false
1213
},
1314
"Serilog": {
1415
"Enrich": [ "FromLogContext" ],

0 commit comments

Comments
 (0)