Skip to content

Commit c23ac57

Browse files
committed
Upgrade to .NET Core 3.1 (#1488)
1 parent 4742d6f commit c23ac57

9 files changed

Lines changed: 9 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ All notable changes to this project will be documented in this file.
2020
- Moved reporting functionality to oxyplot-reporting repository (#1403)
2121
- Change IPlotModel.Render to take an OxyRect (#1425)
2222
- Merge UIElement and SelectableElement into Element (#1426)
23+
- Upgrade to .NET Core 3.1 (#1488)
2324

2425
### Removed
2526
- Remove PlotModel.Legends (#644)

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-
<TargetFramework>netcoreapp3.0</TargetFramework>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<!--<UseWindowsForms>true</UseWindowsForms>-->
66
<OutputType>Exe</OutputType>
77
<ApplicationIcon />

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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<UseWPF>true</UseWPF>
55
<OutputType>WinExe</OutputType>
66
</PropertyGroup>

Source/Examples/WPF/SimpleDemo/SimpleDemo.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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0;net45;net40</TargetFrameworks>
3+
<TargetFrameworks>net45;net40;netcoreapp3.1</TargetFrameworks>
44
<UseWPF>true</UseWPF>
55
<OutputType>WinExe</OutputType>
66
</PropertyGroup>

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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.0</TargetFramework>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
44
<UseWPF>true</UseWPF>
55
<UseWindowsForms>true</UseWindowsForms>
66
<OutputType>WinExe</OutputType>

Source/Examples/WindowsForms/ExampleBrowser/ExampleBrowser.WindowsForms.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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
3+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
44
<UseWindowsForms>true</UseWindowsForms>
55
<OutputType>WinExe</OutputType>
66
</PropertyGroup>

Source/Examples/WindowsForms/WindowsFormsDemo/WindowsFormsDemo.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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0;net45;net40</TargetFrameworks>
3+
<TargetFrameworks>net45;net40;netcoreapp3.1</TargetFrameworks>
44
<UseWindowsForms>true</UseWindowsForms>
55
<OutputType>WinExe</OutputType>
66
</PropertyGroup>

Source/OxyPlot.WindowsForms/OxyPlot.WindowsForms.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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0;net45;net40</TargetFrameworks>
3+
<TargetFrameworks>net45;net40;netcoreapp3.1</TargetFrameworks>
44
<UseWindowsForms>true</UseWindowsForms>
55
<Description>OxyPlot is a plotting library for .NET. This package targets Windows Forms applications.</Description>
66
<Copyright>Copyright (c) 2014 OxyPlot contributors</Copyright>

Source/OxyPlot.Wpf/OxyPlot.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.WindowsDesktop">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0;net45;net40</TargetFrameworks>
3+
<TargetFrameworks>net45;net40;netcoreapp3.1</TargetFrameworks>
44
<UseWPF>true</UseWPF>
55
<GenerateDocumentationFile>True</GenerateDocumentationFile>
66
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

0 commit comments

Comments
 (0)