File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
src/HomeAutio.Mqtt.Ecobee Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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" />
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change 88 "brokerIp" : " localhost" ,
99 "brokerPort" : 1883 ,
1010 "brokerUsername" : null ,
11- "brokerPassword" : null
11+ "brokerPassword" : null ,
12+ "brokerUseTls" : false
1213 },
1314 "Serilog" : {
1415 "Enrich" : [ " FromLogContext" ],
You can’t perform that action at this time.
0 commit comments