Skip to content

Commit 3a54eb5

Browse files
authored
Replace .NET 7 targets by .NET 8 (#2090)
1 parent 4c372ac commit 3a54eb5

File tree

23 files changed

+31
-33
lines changed

23 files changed

+31
-33
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
uses: actions/setup-dotnet@v3
3636
with:
3737
dotnet-version: |
38-
3.1.x
3938
6.0.x
39+
8.0.x
4040
4141
- name: Setup MSBuild.exe
4242
uses: microsoft/setup-msbuild@v1.1

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
dotnet-version: |
2121
6.0.x
22-
7.0.x
22+
8.0.x
2323
2424
- name: Build
2525
run: dotnet build Source/OxyPlot.CI.sln --configuration Release

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ All notable changes to this project will be documented in this file.
2424
- Remove support for .NET Core 3.1, as it is end-of-life soon (#1937)
2525
- Move example projects to .NET Framework 4.6.2 and .NET 6.0 (#1937)
2626
- Run tests on both .NET Framework 4.6.2 and .NET 6.0 (#1937)
27-
- Add support for .NET 7.0 (#1937)
27+
- Add support for .NET 8.0
2828
- Update SkiaSharp to Version 2.88.6
2929
- AxisRendererBase is now generic
3030
- DateTimeAxis.ToDateTime(double value) is now obsolete, replacements are provided (related to #2061)

Source/Examples/Core.Drawing/Example1/Example1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

Source/Examples/ExampleGenerator/ExampleGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0-windows;net7.0-windows</TargetFrameworks>
4+
<TargetFrameworks>net6.0-windows;net8.0-windows</TargetFrameworks>
55
<!--<UseWindowsForms>true</UseWindowsForms>-->
66
<OutputType>Exe</OutputType>
77
<ApplicationIcon />

Source/Examples/ExampleLibrary/ExampleLibrary.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>netstandard2.0;net462;net6.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
44
<PackageId>OxyPlot.ExampleLibrary</PackageId>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
66
<Description>Example models for OxyPlot.</Description>

Source/Examples/ImageSharp/Example1/Example1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0</TargetFrameworks>
5+
<TargetFrameworks>net8.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>

Source/Examples/PerformanceTest/PerformanceTest.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>net462;net6.0-windows;net7.0-windows</TargetFrameworks>
3+
<TargetFrameworks>net462;net6.0-windows;net8.0-windows</TargetFrameworks>
44
<OutputType>Exe</OutputType>
55
<ApplicationIcon />
66
<StartupObject />

Source/Examples/WPF/ExampleBrowser/ExampleBrowser.WPF.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>net462;net6.0-windows;net7.0-windows</TargetFrameworks>
3+
<TargetFrameworks>net462;net6.0-windows;net8.0-windows</TargetFrameworks>
44
<UseWPF>true</UseWPF>
55
<OutputType>WinExe</OutputType>
66
<ApplicationManifest>app.manifest</ApplicationManifest>

Source/Examples/WPF/WpfExamples/WpfExamples.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>net462;net6.0-windows;net7.0-windows</TargetFrameworks>
3+
<TargetFrameworks>net462;net6.0-windows;net8.0-windows</TargetFrameworks>
44
<UseWPF>true</UseWPF>
55
<UseWindowsForms>true</UseWindowsForms>
66
<OutputType>WinExe</OutputType>

0 commit comments

Comments
 (0)