diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ee3b7e0..aa5f2ff 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,6 +19,11 @@ jobs: with: dotnet-version: 7.0.x + - name: Setup .NET 8 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.x + - name: Install Node.js uses: actions/setup-node@v1 with: diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7e3a242..079ad84 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -34,5 +34,11 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: 7.0.x + + - name: Setup .NET 8 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.x + - name: Build Script run: dotnet run -p build/build.csproj -- ci diff --git a/.github/workflows/publish_nuget.yml b/.github/workflows/publish_nuget.yml index 77040b5..ba68aed 100644 --- a/.github/workflows/publish_nuget.yml +++ b/.github/workflows/publish_nuget.yml @@ -17,6 +17,12 @@ jobs: uses: actions/setup-dotnet@v3 with: dotnet-version: 7.0.x + + - name: Setup .NET 8 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.x + - name: Pack run: dotnet pack src/Oakton/Oakton.csproj --configuration Release diff --git a/src/Oakton/Oakton.csproj b/src/Oakton/Oakton.csproj index 9248560..d59d779 100644 --- a/src/Oakton/Oakton.csproj +++ b/src/Oakton/Oakton.csproj @@ -2,9 +2,9 @@ Command Line Parsing and Execution Oakton - 6.0.2 + 6.1.0 Jeremy D. Miller - net6.0;net7.0 + net6.0;net7.0;net8.0 portable Oakton Library @@ -14,12 +14,12 @@ https://github.com/jasperfx/oakton/raw/master/LICENSE.TXT git git://github.com/jasperfx/oakton - jasper-icon.png + https://raw.githubusercontent.com/JasperFx/JasperFx.Core/main/jasperfx-logo.jpg?raw=true - - - + + + diff --git a/src/Tests/Tests.csproj b/src/Tests/Tests.csproj index 0c1d7af..a5243ce 100644 --- a/src/Tests/Tests.csproj +++ b/src/Tests/Tests.csproj @@ -1,7 +1,7 @@ - net6.0;net7.0 + net6.0;net7.0;net8.0 false