Skip to content

Commit f699d33

Browse files
committed
Upgrade auf dotnet 8
1 parent 8b06575 commit f699d33

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

.github/workflows/bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33

44
env:
5-
DOTNET_VERSION: "7.0.x" # The .NET SDK version to use
5+
DOTNET_VERSION: "8.0.x" # The .NET SDK version to use
66
SOLUTION_DIR: "LocalNetAppChat"
77
PROJECT: "./LocalNetAppChat.Bot/LocalNetAppChat.Bot.csproj"
88
RELEASEPREFIX: "LocalNetAppChat"

.github/workflows/client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33

44
env:
5-
DOTNET_VERSION: "7.0.x" # The .NET SDK version to use
5+
DOTNET_VERSION: "8.0.x" # The .NET SDK version to use
66
SOLUTION_DIR: "LocalNetAppChat"
77
PROJECT: "./LocalNetAppChat.ConsoleClient/LocalNetAppChat.ConsoleClient.csproj"
88
RELEASEPREFIX: "LocalNetAppChat"

.github/workflows/server.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on:
22
push:
33

44
env:
5-
DOTNET_VERSION: "7.0.x" # The .NET SDK version to use
5+
DOTNET_VERSION: "8.0.x" # The .NET SDK version to use
66
SOLUTION_DIR: "LocalNetAppChat"
77
PROJECT: "./LocalNetAppChat.Server/LocalNetAppChat.Server.csproj"
88
RELEASEPREFIX: "LocalNetAppChat"

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
LocalNetAppChat (LNAC) is a client-server application for local network communication written in C#/.NET 7.0. It consists of:
7+
LocalNetAppChat (LNAC) is a client-server application for local network communication written in C#/.NET 8.0. It consists of:
88
- **Server**: ASP.NET Core Web API handling message routing and file storage
99
- **Client**: Console application for sending/receiving messages
1010
- **Bot**: Plugin-based application for executing scripts and responding to commands
@@ -100,7 +100,7 @@ Source/LocalNetAppChat/
100100

101101
3. **Script Execution**: Bot can execute PowerShell and Python scripts from designated scripts folder
102102

103-
4. **Cross-Platform**: Uses .NET 7.0 for Windows, Linux, and macOS support
103+
4. **Cross-Platform**: Uses .NET 8.0 for Windows, Linux, and macOS support
104104

105105
5. **Communication Protocol**: HTTP/HTTPS with optional SSL certificate validation bypass for development
106106

Source/LocalNetAppChat/CommandLineArguments/CommandLineArguments.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

Source/LocalNetAppChat/LocalNetAppChat.Bot/LocalNetAppChat.Bot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

Source/LocalNetAppChat/LocalNetAppChat.ConsoleClient/LocalNetAppChat.ConsoleClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

Source/LocalNetAppChat/LocalNetAppChat.Domain.Tests/LocalNetAppChat.Domain.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

Source/LocalNetAppChat/LocalNetAppChat.Domain/LocalNetAppChat.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

Source/LocalNetAppChat/LocalNetAppChat.Server.Domain.Tests/LocalNetAppChat.Server.Domain.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)