From 0cc06bbc47d22222600478f6a1cf037f9aa43731 Mon Sep 17 00:00:00 2001 From: Stefan Rinkes Date: Fri, 15 Mar 2024 00:21:32 +0100 Subject: [PATCH] .NET Update --- .github/workflows/dotnet-ubuntu.yml | 2 +- .github/workflows/dotnet-windows.yml | 2 +- .github/workflows/nuget.yml | 2 +- README.md | 4 ++-- SshNet.PuttyKeyFile.Sample/SshNet.PuttyKeyFile.Sample.csproj | 4 ++-- SshNet.PuttyKeyFile.Tests/SshNet.PuttyKeyFile.Tests.csproj | 4 ++-- SshNet.PuttyKeyFile/SshNet.PuttyKeyFile.csproj | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/dotnet-ubuntu.yml b/.github/workflows/dotnet-ubuntu.yml index a7e5ef5..c6092da 100644 --- a/.github/workflows/dotnet-ubuntu.yml +++ b/.github/workflows/dotnet-ubuntu.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/.github/workflows/dotnet-windows.yml b/.github/workflows/dotnet-windows.yml index be9c6be..71a72c1 100644 --- a/.github/workflows/dotnet-windows.yml +++ b/.github/workflows/dotnet-windows.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/.github/workflows/nuget.yml b/.github/workflows/nuget.yml index d7f1fd7..754deee 100644 --- a/.github/workflows/nuget.yml +++ b/.github/workflows/nuget.yml @@ -14,7 +14,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v1 with: - dotnet-version: 7.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore - name: Build diff --git a/README.md b/README.md index 8a17f6d..f6e5ad2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ WIP ## .NET Frameworks -* .NET 4.6 +* .NET 4.8 * netstandard 2.0 ## Keys @@ -37,4 +37,4 @@ var key = new PuttyKeyFile("my-key.ppk"); using var client = new SshClient("ssh.foo.com", "root", key); client.Connect(); Console.WriteLine(client.RunCommand("hostname").Result); -``` \ No newline at end of file +``` diff --git a/SshNet.PuttyKeyFile.Sample/SshNet.PuttyKeyFile.Sample.csproj b/SshNet.PuttyKeyFile.Sample/SshNet.PuttyKeyFile.Sample.csproj index 9bb5784..9dc7c3d 100644 --- a/SshNet.PuttyKeyFile.Sample/SshNet.PuttyKeyFile.Sample.csproj +++ b/SshNet.PuttyKeyFile.Sample/SshNet.PuttyKeyFile.Sample.csproj @@ -1,8 +1,8 @@ - net462;net7.0 - net7.0 + net48;net8.0 + net8.0 exe 9 enable diff --git a/SshNet.PuttyKeyFile.Tests/SshNet.PuttyKeyFile.Tests.csproj b/SshNet.PuttyKeyFile.Tests/SshNet.PuttyKeyFile.Tests.csproj index 2173fa0..f69f358 100644 --- a/SshNet.PuttyKeyFile.Tests/SshNet.PuttyKeyFile.Tests.csproj +++ b/SshNet.PuttyKeyFile.Tests/SshNet.PuttyKeyFile.Tests.csproj @@ -1,7 +1,7 @@ - net462;net7.0 - net7.0 + net48;net8.0 + net8.0 9 enable false diff --git a/SshNet.PuttyKeyFile/SshNet.PuttyKeyFile.csproj b/SshNet.PuttyKeyFile/SshNet.PuttyKeyFile.csproj index 60dc867..a0037e1 100644 --- a/SshNet.PuttyKeyFile/SshNet.PuttyKeyFile.csproj +++ b/SshNet.PuttyKeyFile/SshNet.PuttyKeyFile.csproj @@ -1,6 +1,6 @@ - net462;netstandard2.0 + net48;netstandard2.0 netstandard2.0 9 enable