From cd3f95d0be1675a837ad00d14d5bdd6ee3b65dd3 Mon Sep 17 00:00:00 2001 From: Archi Date: Tue, 14 Nov 2023 19:03:39 +0100 Subject: [PATCH] .NET 8 --- .github/workflows/ci.yml | 2 +- .github/workflows/publish.yml | 2 +- README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de77c5e..5c67333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: [push, pull_request] env: DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_NOLOGO: true - DOTNET_SDK_VERSION: 7.0.x + DOTNET_SDK_VERSION: 8.0 jobs: main: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7ebda2d..58cae46 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,7 +7,7 @@ env: CONFIGURATION: Release DOTNET_CLI_TELEMETRY_OPTOUT: true DOTNET_NOLOGO: true - DOTNET_SDK_VERSION: 7.0.x + DOTNET_SDK_VERSION: 8.0 jobs: publish: diff --git a/README.md b/README.md index 881ff1d..327ec4d 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ We support `netstandard2.0`, so .NET Framework 4.6.1 and newer. There is also a dotnet add package JustArchiNET.Madness ``` -If you're targetting multiple frameworks out of which only one is .NET Framework (e.g. `net7.0` and `net481`), it's *usually* a good idea to not pull it for the others. +If you're targetting multiple frameworks out of which only one is .NET Framework (e.g. `net8.0` and `net481`), it's *usually* a good idea to not pull it for the others. ```csproj @@ -270,7 +270,7 @@ namespace ThisIsMadness { If you're building only for .NET Framework exclusively, no, it's not required and actually quite useless code verbosity for you. -However, if you're targetting multiple frameworks out of which only one is .NET Framework (e.g. `net7.0` and `net481`), then `#if` clause guarantees that madness won't embrace your other targets. +However, if you're targetting multiple frameworks out of which only one is .NET Framework (e.g. `net8.0` and `net481`), then `#if` clause guarantees that madness won't embrace your other targets. You don't want madness to embrace your other targets, do you?