From 4ecef1080fe72254f0ccf6cb3718b95ff1e5e469 Mon Sep 17 00:00:00 2001 From: elky Date: Wed, 6 Mar 2024 17:54:56 +0900 Subject: [PATCH] use .NET 8 --- .idea/.idea.EzDotNetty/.idea/.gitignore | 13 ------------- .idea/.idea.EzDotNetty/.idea/encodings.xml | 4 ---- .idea/.idea.EzDotNetty/.idea/indexLayout.xml | 8 -------- .idea/.idea.EzDotNetty/.idea/vcs.xml | 6 ------ EzDotNetty/EzDotnetty.csproj | 6 +++--- Protocols/Protocols.csproj | 2 +- README.md | 8 ++++++-- ServerShared/ServerShared.csproj | 2 +- TestClient/TestClient.csproj | 2 +- TestClientCLI/TestClientCLI.csproj | 2 +- TestClientShared/TestClientShared.csproj | 2 +- TestServer/TestServer.csproj | 2 +- UnitTest/UnitTest.csproj | 2 +- 13 files changed, 16 insertions(+), 43 deletions(-) delete mode 100644 .idea/.idea.EzDotNetty/.idea/.gitignore delete mode 100644 .idea/.idea.EzDotNetty/.idea/encodings.xml delete mode 100644 .idea/.idea.EzDotNetty/.idea/indexLayout.xml delete mode 100644 .idea/.idea.EzDotNetty/.idea/vcs.xml diff --git a/.idea/.idea.EzDotNetty/.idea/.gitignore b/.idea/.idea.EzDotNetty/.idea/.gitignore deleted file mode 100644 index e663b94..0000000 --- a/.idea/.idea.EzDotNetty/.idea/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Rider ignored files -/modules.xml -/contentModel.xml -/.idea.EzDotNetty.iml -/projectSettingsUpdater.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/.idea.EzDotNetty/.idea/encodings.xml b/.idea/.idea.EzDotNetty/.idea/encodings.xml deleted file mode 100644 index df87cf9..0000000 --- a/.idea/.idea.EzDotNetty/.idea/encodings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/.idea.EzDotNetty/.idea/indexLayout.xml b/.idea/.idea.EzDotNetty/.idea/indexLayout.xml deleted file mode 100644 index 7b08163..0000000 --- a/.idea/.idea.EzDotNetty/.idea/indexLayout.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/.idea.EzDotNetty/.idea/vcs.xml b/.idea/.idea.EzDotNetty/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/.idea.EzDotNetty/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/EzDotNetty/EzDotnetty.csproj b/EzDotNetty/EzDotnetty.csproj index 6b679c1..0e83282 100644 --- a/EzDotNetty/EzDotnetty.csproj +++ b/EzDotNetty/EzDotnetty.csproj @@ -1,12 +1,12 @@ - + - net7.0 + net8.0 enable enable EzDotNetty - 1.0.19 + 1.0.20 elky elky README.md diff --git a/Protocols/Protocols.csproj b/Protocols/Protocols.csproj index 35b64ff..13902f4 100644 --- a/Protocols/Protocols.csproj +++ b/Protocols/Protocols.csproj @@ -1,7 +1,7 @@  - netstandard2.0 + netstandard2.1 diff --git a/README.md b/README.md index e0b27fc..b52a192 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![Website](https://img.shields.io/website-up-down-green-red/http/shields.io.svg?label=elky-essay)](https://elky84.github.io) -![Made with](https://img.shields.io/badge/made%20with-.NET7-blue.svg) +![Made with](https://img.shields.io/badge/made%20with-.NET8-blue.svg) [![Publish Nuget Github Package](https://github.com/elky84/EzDotNetty/actions/workflows/publish_github.yml/badge.svg)](https://github.com/elky84/EzDotNetty/actions/workflows/publish_github.yml) [![Publish Nuget Package](https://github.com/elky84/EzDotNetty/actions/workflows/publish_nuget.yml/badge.svg)](https://github.com/elky84/EzDotNetty/actions/workflows/publish_nuget.yml) @@ -20,7 +20,7 @@ Easily usable with [DotNetty](https://github.com/Azure/DotNetty). -Implemented by C# .NET 7. +Implemented by C# .NET 8 The purpose of this project is to easily build and operate a server using DotNetty. @@ -88,6 +88,10 @@ The purpose of this project is to easily build and operate a server using DotNet ## version history +### v1.0.20 + +use .NET 8 + ### v1.0.19 improve logging interface. diff --git a/ServerShared/ServerShared.csproj b/ServerShared/ServerShared.csproj index 8455f68..1c29ca7 100644 --- a/ServerShared/ServerShared.csproj +++ b/ServerShared/ServerShared.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 diff --git a/TestClient/TestClient.csproj b/TestClient/TestClient.csproj index f167933..ea6dca6 100644 --- a/TestClient/TestClient.csproj +++ b/TestClient/TestClient.csproj @@ -2,7 +2,7 @@ WinExe - net7.0-windows + net8.0-windows enable true enable diff --git a/TestClientCLI/TestClientCLI.csproj b/TestClientCLI/TestClientCLI.csproj index d489fa5..5e196f9 100644 --- a/TestClientCLI/TestClientCLI.csproj +++ b/TestClientCLI/TestClientCLI.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 TestClient diff --git a/TestClientShared/TestClientShared.csproj b/TestClientShared/TestClientShared.csproj index 13be262..6cea088 100644 --- a/TestClientShared/TestClientShared.csproj +++ b/TestClientShared/TestClientShared.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 enable enable diff --git a/TestServer/TestServer.csproj b/TestServer/TestServer.csproj index 3591084..c188374 100644 --- a/TestServer/TestServer.csproj +++ b/TestServer/TestServer.csproj @@ -2,7 +2,7 @@ Exe - net7.0 + net8.0 TestServer TestServer Linux diff --git a/UnitTest/UnitTest.csproj b/UnitTest/UnitTest.csproj index 4ca4b6d..7a05837 100644 --- a/UnitTest/UnitTest.csproj +++ b/UnitTest/UnitTest.csproj @@ -1,7 +1,7 @@ - net7.0 + net8.0 enable false