Skip to content
This repository was archived by the owner on Apr 27, 2026. It is now read-only.

Commit 06e9b74

Browse files
committed
update to .NET 9, update dependencies
1 parent d11f5a0 commit 06e9b74

66 files changed

Lines changed: 182 additions & 174 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Directory.Build.props

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,21 @@
1616
</PropertyGroup>
1717

1818
<PropertyGroup>
19+
<HtmlAgilityPackVersion>1.11.57</HtmlAgilityPackVersion>
1920
<HumanizerCoreVersion>2.14.1</HumanizerCoreVersion>
2021
<HumanizerVersion>2.14.1</HumanizerVersion>
21-
<MicrosoftCodeAnalysisCommonVersion>4.11.0</MicrosoftCodeAnalysisCommonVersion>
22+
<MicrosoftCodeAnalysisCommonVersion>4.12.0</MicrosoftCodeAnalysisCommonVersion>
2223
<MicrosoftDataSqlClientVersion>5.2.2</MicrosoftDataSqlClientVersion>
23-
<MicrosoftEntityFrameworkCoreDesignVersion>8.0.10</MicrosoftEntityFrameworkCoreDesignVersion>
24-
<MicrosoftEntityFrameworkCoreSqlServerVersion>8.0.10</MicrosoftEntityFrameworkCoreSqlServerVersion>
24+
<MicrosoftEntityFrameworkCoreDesignVersion>9.0.0</MicrosoftEntityFrameworkCoreDesignVersion>
25+
<MicrosoftEntityFrameworkCoreSqlServerVersion>9.0.0</MicrosoftEntityFrameworkCoreSqlServerVersion>
2526
<MicrosoftIdentityClientVersion>4.65.0</MicrosoftIdentityClientVersion>
26-
<MicrosoftNETTestSdkVersion>17.4.0</MicrosoftNETTestSdkVersion>
27+
<MicrosoftNETTestSdkVersion>17.12.0</MicrosoftNETTestSdkVersion>
2728
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
28-
<SystemDrawingCommonVersion>8.0.11</SystemDrawingCommonVersion>
29+
<SystemDrawingCommonVersion>9.0.0</SystemDrawingCommonVersion>
2930
<SystemReactiveVersion>6.0.0</SystemReactiveVersion>
30-
<SystemSecurityCryptographyPkcsVersion>8.0.0</SystemSecurityCryptographyPkcsVersion>
31-
<SystemSecurityCryptographyXmlVersion>8.0.1</SystemSecurityCryptographyXmlVersion>
32-
<SystemTextJsonVersion>8.0.5</SystemTextJsonVersion>
31+
<SystemSecurityCryptographyPkcsVersion>9.0.0</SystemSecurityCryptographyPkcsVersion>
32+
<SystemSecurityCryptographyXmlVersion>9.0.0</SystemSecurityCryptographyXmlVersion>
33+
<SystemTextJsonVersion>9.0.0</SystemTextJsonVersion>
3334
<xunitrunnervisualstudioVersion>2.5.7</xunitrunnervisualstudioVersion>
3435
<xunitVersion>2.7.0</xunitVersion>
3536
</PropertyGroup>

Directory.Build.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
FSharp.Compiler.Service: https://dev.azure.com/dnceng/internal/_release?view=mine&_a=releases&definitionId=98
3333
3434
-->
35-
<PackageReference Update="FSharp.Core" Version="8.0.200" />
36-
<PackageReference Update="FSharp.Compiler.Service" Version="43.8.200" />
35+
<PackageReference Update="FSharp.Core" Version="9.0.100" />
36+
<PackageReference Update="FSharp.Compiler.Service" Version="43.9.100" />
3737
</ItemGroup>
3838

3939
</Project>

eng/perf-tests/perf-tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
<RootNamespace>PerfTests</RootNamespace>
77
<NoWarn>$(NoWarn);CS8032</NoWarn><!-- An instance of analyzer...cannot be created -->

global.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
{
22
"sdk": {
3-
"version": "8.0.110",
4-
"allowPrerelease": true,
5-
"rollForward": "latestMinor"
3+
"version": "9.0.100",
4+
"allowPrerelease": true
65
},
76
"tools": {
8-
"dotnet": "8.0.110",
7+
"dotnet": "9.0.100",
98
"rollForward": "latestMinor"
109
},
1110
"msbuild-sdks": {

samples/connect-wpf/WpfConnect.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0-windows</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>WinExe</OutputType>
66
<UseWPF>true</UseWPF>
77
<DisableArcade>1</DisableArcade>

samples/extensions/ClockExtension/ClockExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<IncludeBuildOutput>true</IncludeBuildOutput>
77
<IsPackable>true</IsPackable>
88
<PackageDescription>Formats dates as an SVG clock in .NET Interactive</PackageDescription>

samples/extensions/Library.InteractiveExtension/Library.InteractiveExtension.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<PropertyGroup>
88
<OutputType>Library</OutputType>
9-
<TargetFramework>net8.0</TargetFramework>
9+
<TargetFramework>net9.0</TargetFramework>
1010
</PropertyGroup>
1111

1212
</Project>

samples/extensions/Library.nuget/Library.nuget.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<IncludeBuildOutput>false</IncludeBuildOutput>
77

88
<PackageId>Library</PackageId>

samples/extensions/Library/Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFrameworks>net8.0</TargetFrameworks>
5+
<TargetFrameworks>net9.0</TargetFrameworks>
66
</PropertyGroup>
77

88
</Project>

samples/extensions/SampleExtensions.Tests/SampleExtensions.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)