File tree 5 files changed +6
-4
lines changed
ConsoleDrivers/CursesDriver
5 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<!-- Version numbers are automatically updated by gitversion when a release is released -->
6
6
<!-- In the source tree the version will always be 1.0 for all projects. -->
7
7
<!-- Do not modify these. -->
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net7 .0</TargetFramework >
5
5
<!-- Version numbers are automatically updated by gitversion when a release is released -->
6
6
<!-- In the source tree the version will always be 2.0 for all projects. -->
7
7
<!-- Do not modify these. -->
Original file line number Diff line number Diff line change @@ -331,6 +331,7 @@ static public int IsAlt (int key)
331
331
#pragma warning disable RCS1102 // Make class static.
332
332
internal class Delegates {
333
333
#pragma warning restore RCS1102 // Make class static.
334
+ #pragma warning disable CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
334
335
public delegate IntPtr initscr ( ) ;
335
336
public delegate int endwin ( ) ;
336
337
public delegate bool isendwin ( ) ;
@@ -555,4 +556,5 @@ public NativeMethods (UnmanagedLibrary lib)
555
556
}
556
557
}
557
558
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member
559
+ #pragma warning restore CS8981 // The type name only contains lower-cased ascii characters. Such names may become reserved for the language.
558
560
}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ The PR title should be of the form "Release v2.3.4"
77
77
``` powershell
78
78
git checkout develop
79
79
git pull upstream develop
80
- git checkout -b v_2_3_4
80
+ git checkout -b v2_3_4
81
81
git add .
82
82
git commit -m "Release v2.3.4"
83
83
git push
Original file line number Diff line number Diff line change 56
56
<PackageReference Include =" System.Management" Version =" 7.0.0" />
57
57
</ItemGroup >
58
58
<PropertyGroup >
59
- <TargetFrameworks >net472;netstandard2.0;net6 .0</TargetFrameworks >
59
+ <TargetFrameworks >net472;netstandard2.0;net7 .0</TargetFrameworks >
60
60
<RootNamespace >Terminal.Gui</RootNamespace >
61
61
<AssemblyName >Terminal.Gui</AssemblyName >
62
62
<DocumentationFile >bin\Release\Terminal.Gui.xml</DocumentationFile >
You can’t perform that action at this time.
0 commit comments