Skip to content

Commit

Permalink
Upgrade to .NET8
Browse files Browse the repository at this point in the history
  • Loading branch information
polomani authored Oct 14, 2024
2 parents a88b73f + 764f643 commit 17203ed
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8

- name: Restore tools
run: dotnet tool restore
Expand Down
3 changes: 2 additions & 1 deletion Connector/Connector.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
Expand Down
2 changes: 1 addition & 1 deletion Documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The requirements for DWSIM may be higher, should accommodate for that

- Windows Server 2016 or higher
- DWSIM installed: The connector was built to integrate with DWSIM version 8.4. Newer versions may work, but they are not tested.
- .NET 6.0 runtime
- .NET 8.0 runtime

**Additional CDF requirements**

Expand Down
3 changes: 2 additions & 1 deletion Service/Service.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
Expand Down
5 changes: 5 additions & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ extractor:
image: logo.png

versions:
"1.0.0-alpha-119":
description: Upgrade to .NET 8
changelog:
added:
- "Upgraded to .NET 8. Requires .NET 8 runtime to run the connector."
"1.0.0-alpha-118":
description: Bug fixes and improvements
changelog:
Expand Down

0 comments on commit 17203ed

Please sign in to comment.