Skip to content

Commit 70dc93c

Browse files
committed
feat!: .net9
1 parent 1cb6d9c commit 70dc93c

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; Visual Studio Extension : http://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328
2+
; See http://editorconfig.org/ for more informations
3+
; Top-most EditorConfig file
4+
root = false
5+
6+
# Additions for AppVeyor tests, use Git Extensions settings by default
7+
8+
# WFO1000: A property should determine its property content serialization with the DesignerSerializationVisibilityAttribute, DefaultValueAttribute or the ShouldSerializeProperty method
9+
# Silent for now, see https://github.com/dotnet/winforms/issues/12476
10+
dotnet_diagnostic.WFO1000.severity = silent

Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project>
33

44
<PropertyGroup>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net9.0-windows</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
77
<DeterministicSourcePaths Condition="'$(EnableSourceLink)' == ''">false</DeterministicSourcePaths>
88
</PropertyGroup>

ICSharpCode.TextEditor.Sample/ICSharpCode.TextEditor.Sample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>WinExe</OutputType>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net9.0-windows</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
77
</PropertyGroup>
88

Project/ICSharpCode.TextEditor.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net8.0-windows</TargetFramework>
5+
<TargetFramework>net9.0-windows</TargetFramework>
66
<UseWindowsForms>true</UseWindowsForms>
77
<DeterministicSourcePaths Condition="'$(EnableSourceLink)' == ''">false</DeterministicSourcePaths>
88
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

Test/ICSharpCode.TextEditor.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<OutputType>Library</OutputType>
55
<OutputPath>..\..\..\..\bin\UnitTests</OutputPath>
6-
<TargetFramework>net8.0-windows</TargetFramework>
6+
<TargetFramework>net9.0-windows</TargetFramework>
77
<UseWindowsForms>true</UseWindowsForms>
88
</PropertyGroup>
99

0 commit comments

Comments
 (0)