Skip to content

Commit f766db7

Browse files
committed
Updated to net7.0
1 parent ad5e259 commit f766db7

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Example/Example.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<!-- Version numbers are automatically updated by gitversion when a release is released -->
66
<!-- In the source tree the version will always be 1.0 for all projects. -->
77
<!-- Do not modify these. -->

ReactiveExample/ReactiveExample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net7.0</TargetFramework>
55
<!-- Version numbers are automatically updated by gitversion when a release is released -->
66
<!-- In the source tree the version will always be 2.0 for all projects. -->
77
<!-- Do not modify these. -->

Terminal.Gui/ConsoleDrivers/CursesDriver/binding.cs

+2
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ static public int IsAlt (int key)
331331
#pragma warning disable RCS1102 // Make class static.
332332
internal class Delegates {
333333
#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.
334335
public delegate IntPtr initscr ();
335336
public delegate int endwin ();
336337
public delegate bool isendwin ();
@@ -555,4 +556,5 @@ public NativeMethods (UnmanagedLibrary lib)
555556
}
556557
}
557558
#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.
558560
}

Terminal.Gui/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The PR title should be of the form "Release v2.3.4"
7777
```powershell
7878
git checkout develop
7979
git pull upstream develop
80-
git checkout -b v_2_3_4
80+
git checkout -b v2_3_4
8181
git add .
8282
git commit -m "Release v2.3.4"
8383
git push

Terminal.Gui/Terminal.Gui.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<PackageReference Include="System.Management" Version="7.0.0" />
5757
</ItemGroup>
5858
<PropertyGroup>
59-
<TargetFrameworks>net472;netstandard2.0;net6.0</TargetFrameworks>
59+
<TargetFrameworks>net472;netstandard2.0;net7.0</TargetFrameworks>
6060
<RootNamespace>Terminal.Gui</RootNamespace>
6161
<AssemblyName>Terminal.Gui</AssemblyName>
6262
<DocumentationFile>bin\Release\Terminal.Gui.xml</DocumentationFile>

0 commit comments

Comments
 (0)