Skip to content

Commit

Permalink
Update to latest hassclient (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
helto4real committed Dec 8, 2020
1 parent 2453aa3 commit 08c9f84
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

FROM mcr.microsoft.com/dotnet/sdk:5.0.100

RUN apt-get update && apt-get install openssh-client
RUN apt-get update && apt-get install -y ssh
# This Dockerfile adds a non-root 'vscode' user with sudo access. However, for Linux,
# this user's GID/UID must match your local user UID/GID to avoid permission issues
# with bind mounts. Update USER_UID / USER_GID if yours is not 1000. See
Expand Down
7 changes: 2 additions & 5 deletions exampleapps/apps/test2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,10 @@ public override async Task InitializeAsync()
// Log("Hello!");
// });
// EventChanges
// // .Where(e => e.Domain == "scene" && e.Event == "turn_on")
// .Subscribe(e =>
// {
// Log("Hello!");
// },
// err => LogError(err, "Ohh nooo!"),
// () => Log("Ending event"));
// Log($"Event: {e.Domain }.{e.Event}, {e.Data?.EntityId}");
// });



Expand Down
2 changes: 1 addition & 1 deletion src/App/NetDaemon.App/NetDaemon.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JoySoftware.HassClient" Version="20.49.0-beta" />
<PackageReference Include="JoySoftware.HassClient" Version="20.49.1-beta" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Daemon/NetDaemon.Daemon/NetDaemon.Daemon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<tags>Home Assistant</tags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JoySoftware.HassClient" Version="20.49.0-beta" />
<PackageReference Include="JoySoftware.HassClient" Version="20.49.1-beta" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
<PackageReference Include="YamlDotNet" Version="8.1.2" />
Expand Down
2 changes: 1 addition & 1 deletion src/DaemonRunner/DaemonRunner/DaemonRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="JoySoftware.HassClient" Version="20.49.0-beta" />
<PackageReference Include="JoySoftware.HassClient" Version="20.49.1-beta" />
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
Expand Down

0 comments on commit 08c9f84

Please sign in to comment.