Skip to content

Commit deb8142

Browse files
committed
Support .Net 9.0
1 parent ffd955d commit deb8142

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/FUNDING.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
buy_me_a_coffee: jdomnitz
2+
thanks_dev: jdomnitz
3+
tidelift: nuget/ZWaveDotNet

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v3
2121
with:
22-
dotnet-version: 8.0.x
22+
dotnet-version: 9.0.x
2323
- name: Restore dependencies
2424
run: dotnet restore
2525
- name: Build

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ An implementation of ZWave Plus using the 2024a public specification.
1919
#### Work in progress:
2020
* Multicast is not fully implemented (including secure multicast)
2121

22+
#### Other Projects
23+
* Check out my other projects for [HomeKit](https://github.com/SmartHomeOS/HomeKitDotNet)
24+
2225
Testers, Tickets, Feedback and PRs are welcome.

ZWaveDotNet/ZWaveDotNet.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0; net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>0.8.1</Version>
7+
<Version>0.8.2</Version>
88
<Authors>jdomnitz</Authors>
99
<Company>SmartHomeOS and Contributors</Company>
1010
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>

0 commit comments

Comments
 (0)