Skip to content

Commit b64dfa8

Browse files
committed
remove dotnet6
1 parent 130ea59 commit b64dfa8

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ on:
1212

1313
jobs:
1414
build:
15+
continue-on-error: true
1516
strategy:
1617
matrix:
17-
dotnet_version: [ 6, 8, 9 ]
18+
dotnet_version: [ 8, 9 ]
1819
msbuild_target: [ x64, x86, ARM64 ]
1920
include:
2021
- msbuild_target: x64
@@ -59,7 +60,7 @@ jobs:
5960
run: dotnet restore
6061
# Build the solution
6162
- name: Build
62-
run: dotnet build mvlView.sln -c Release -f net${{ matrix.dotnet_version }}.0-windows7.0 /p:Platform="${{ matrix.lowercase_target }}"
63+
run: dotnet build mvlView.sln -c Release -f net${{ matrix.dotnet_version }}.0-windows /p:Platform="${{ matrix.lowercase_target }}"
6364

6465
# Publish the artifacts
6566
- name: Publish Artifact

mvlView/mvlView.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0-windows7.0;net8.0-windows7.0;net9.0-windows7.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0-windows;net9.0-windows</TargetFrameworks>
44
<OutputType>WinExe</OutputType>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<UseWindowsForms>true</UseWindowsForms>

0 commit comments

Comments
 (0)