Skip to content

Commit

Permalink
Upgrade project to support .NET 8 runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso committed Nov 17, 2023
1 parent 1413ab1 commit c878160
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
dotnet-version: 8

- name: restore
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
dotnet-version: 8

- name: restore
run: dotnet restore
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
dotnet-version: 8

- name: setup NuGetKeyVaultSignTool
run: dotnet tool install --verbosity minimal --global NuGetKeyVaultSignTool --version 3.2.2
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

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

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Kavod.Vba.Compression/Kavod.Vba.Compression.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<PackageId>NetOfficeFw.VbaCompression</PackageId>
<Version>0.3.2</Version>
<TargetFrameworks>net48;netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net48;netstandard2.0;net8.0</TargetFrameworks>
<Copyright>Copyright © 2016 Ross Knudsen</Copyright>
<Authors>Ross Knudsen</Authors>
<Description>VbaCompression library implements [MS-OVBA] Compression and Decompression algorithms used in the Office VBA File Format structures. Office VBA project contains embedded macros and custom forms for use in Microsoft Office documents.</Description>
Expand Down

0 comments on commit c878160

Please sign in to comment.