Browse Source

feat!: .net9 (#48)

pull/50/head
Gerhard Olsson 5 months ago
committed by GitHub
parent
commit
48f506b0f1
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      .editorconfig
  2. 2
      Directory.Build.props
  3. 2
      ICSharpCode.TextEditor.Sample/ICSharpCode.TextEditor.Sample.csproj
  4. 2
      Project/ICSharpCode.TextEditor.csproj
  5. 2
      Test/ICSharpCode.TextEditor.Tests.csproj

11
.editorconfig

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

2
Directory.Build.props

@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<DeterministicSourcePaths Condition="'$(EnableSourceLink)' == ''">false</DeterministicSourcePaths>
</PropertyGroup>

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

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

2
Project/ICSharpCode.TextEditor.csproj

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<DeterministicSourcePaths Condition="'$(EnableSourceLink)' == ''">false</DeterministicSourcePaths>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

2
Test/ICSharpCode.TextEditor.Tests.csproj

@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<OutputPath>..\..\..\..\bin\UnitTests</OutputPath>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>

Loading…
Cancel
Save