Skip to content

Commit

Permalink
Merge pull request #16 from NetOfficeFw/dev/net8
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso authored Dec 9, 2023
2 parents ab83159 + 203826f commit 5169bf0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
dotnet-version: 8

- name: restore
run: dotnet restore
Expand All @@ -49,11 +49,13 @@ jobs:
run: dotnet test --no-restore --no-build

- name: pack
if: ${{ matrix.configuration == 'Release' }}
run: |
dotnet pack src/VbaCompiler/VbaCompiler.csproj --no-build --no-restore -o dist
dotnet pack src/vbamc/vbamc.csproj --no-build --no-restore -o dist
- name: publish artifact
if: ${{ matrix.configuration == 'Release' }}
uses: actions/upload-artifact@v3
with:
name: 'vbamc_packages_${{ matrix.configuration }}'
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>1.7.0</VersionPrefix>
Expand Down
4 changes: 2 additions & 2 deletions tests/VbaCompiler.Benchmark/VbaCompiler.Benchmark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand All @@ -26,7 +26,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.8" />
<PackageReference Include="BenchmarkDotNet" Version="0.13.11" />
</ItemGroup>

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

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
Expand Down
2 changes: 1 addition & 1 deletion utils/vbad/vbad.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down

0 comments on commit 5169bf0

Please sign in to comment.