Migrerat till version Net9.0

This commit is contained in:
2025-07-17 17:05:32 +02:00
parent ea9c8c6c7b
commit 5f72bb346b
3 changed files with 4 additions and 2 deletions

View File

@ -24,7 +24,9 @@ namespace TestWinFormsDataVis
List<StraightLine> koordCross = new(); List<StraightLine> koordCross = new();
List<TwoPoints> CurveSin = new(); List<TwoPoints> CurveSin = new();
List<TwoPoints> CurveCos = new(); List<TwoPoints> CurveCos = new();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public bool CrossDrawn { get; set; } = false; public bool CrossDrawn { get; set; } = false;
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public bool CurvesDrawn { get; set; } = false; public bool CurvesDrawn { get; set; } = false;
static int _yMid = 0; static int _yMid = 0;

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework> <TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms> <UseWindowsForms>true</UseWindowsForms>
</PropertyGroup> </PropertyGroup>

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
</Project> </Project>