Skip to content

Commit

Permalink
Upgrading to .NET 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaardsholt committed Nov 10, 2020
1 parent c7c76e6 commit 7523569
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Ring_Time": 6800,
"Ring_Tune": "OpenOffice",
"Ring_Color": "Red",
"Idle_Color": "Blue",
"Idle_Color": "Blue",
"ApiKey": "some-key"
}
}
5 changes: 3 additions & 2 deletions busylight-client.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0-windows</TargetFramework>
<RootNamespace>busylight_client</RootNamespace>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWindowsForms>true</UseWindowsForms>
Expand All @@ -15,6 +15,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 7523569

Please sign in to comment.