Skip to content

Commit

Permalink
bumping to .NET 8, v6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Nov 14, 2023
1 parent b17b64a commit 625bdf5
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions .github/workflows/publish_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
12 changes: 6 additions & 6 deletions src/Oakton/Oakton.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<Description>Command Line Parsing and Execution</Description>
<AssemblyTitle>Oakton</AssemblyTitle>
<PackageVersion>6.0.2</PackageVersion>
<PackageVersion>6.1.0</PackageVersion>
<Authors>Jeremy D. Miller</Authors>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<DebugType>portable</DebugType>
<AssemblyName>Oakton</AssemblyName>
<OutputType>Library</OutputType>
Expand All @@ -14,12 +14,12 @@
<PackageLicenseUrl>https://github.com/jasperfx/oakton/raw/master/LICENSE.TXT</PackageLicenseUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/jasperfx/oakton</RepositoryUrl>
<PackageIcon>jasper-icon.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/JasperFx/JasperFx.Core/main/jasperfx-logo.jpg?raw=true</PackageIconUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JasperFx.Core" Version="1.4.0" />
<PackageReference Include="Spectre.Console" Version="0.46.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[6.0.0,8.0.0)" />
<PackageReference Include="JasperFx.Core" Version="1.5.1" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="[6.0.0,9.0.0)" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tests/Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 625bdf5

Please sign in to comment.