Skip to content

Commit

Permalink
Migrate to .NET 9, update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Dec 21, 2024
1 parent 9237768 commit 2e2b424
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions src/DotNetPad/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ dotnet_diagnostic.CA1062.severity = silent
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = silent

# CA1515: Consider making public types internal
dotnet_diagnostic.CA1515.severity = none

# CA2007: Consider calling ConfigureAwait on the awaited task
dotnet_diagnostic.CA2007.severity = silent

Expand Down
6 changes: 3 additions & 3 deletions src/DotNetPad/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="AvalonEdit" Version="6.3.0.90" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.11.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="4.11.0" />
<PackageVersion Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Features" Version="4.12.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.VisualBasic.Features" Version="4.12.0" />
<PackageVersion Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
<PackageVersion Include="System.Waf.Core" Version="8.0.1" />
<PackageVersion Include="System.Waf.Wpf" Version="8.0.1" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<AssemblyName>Waf.DotNetPad.Applications</AssemblyName>
<RootNamespace>Waf.DotNetPad.Applications</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetPad/DotNetPad.Domain/DotNetPad.Domain.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>Waf.DotNetPad.Domain</AssemblyName>
<RootNamespace>Waf.DotNetPad.Domain</RootNamespace>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<RootNamespace>Waf.DotNetPad.Presentation</RootNamespace>
<AssemblyName>DotNetPad</AssemblyName>
Expand Down

0 comments on commit 2e2b424

Please sign in to comment.