Skip to content

Commit

Permalink
feat: net8.0 support (#46)
Browse files Browse the repository at this point in the history
* feat: net8.0 support

changes:
- version bump `Webserver.API.csproj` to `net8.0`
- version bump `Webserver.Api.UnitTests.csproj` to `net8.0`

- continuous integration -> include net8

changes:
- updated `ci.yml`
  • Loading branch information
BoBoBaSs84 authored Dec 18, 2023
1 parent 799dc3e commit 1f5e3a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: "7.0.x"
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: "8.0.x"
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion src/Webserver.API/Webserver.API.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net48;netstandard2.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net48;netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
<AssemblyName>Siemens.Simatic.S7.Webserver.API</AssemblyName>
<RootNamespace>Siemens.Simatic.S7.Webserver.API</RootNamespace>
<Platforms>x64;AnyCPU;x86</Platforms>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>net48;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<AssemblyName>Webserver.API.UnitTests</AssemblyName>
<RootNamespace>Webserver.API.UnitTests</RootNamespace>
Expand Down

0 comments on commit 1f5e3a9

Please sign in to comment.