Skip to content

Commit 884c147

Browse files
Upgrade to .Net 9
1 parent f93e787 commit 884c147

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.github/workflows/dotnet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v2
1818
with:
19-
dotnet-version: 8.0.x
19+
dotnet-version: 9.0.x
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v2
1616
with:
17-
dotnet-version: 8.0.x
17+
dotnet-version: 9.0.x
1818
- name: Restore dependencies
1919
run: dotnet restore
2020
- name: Verify commit exists in origin/main

TelnetNegotiationCore.Functional/TelnetNegotiationCore.Functional.fsproj

+1-1
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
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
</PropertyGroup>
77

TelnetNegotiationCore.TestClient/TelnetNegotiationCore.TestClient.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>
@@ -16,13 +16,13 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
20-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
19+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0" />
20+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
2121
<PackageReference Include="Pipelines.Sockets.Unofficial" Version="2.2.8" />
2222
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
23-
<PackageReference Include="Serilog.Formatting.Compact" Version="2.0.0" />
24-
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
25-
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
23+
<PackageReference Include="Serilog.Formatting.Compact" Version="3.0.0" />
24+
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
25+
<PackageReference Include="System.IO.Pipelines" Version="9.0.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

TelnetNegotiationCore.TestServer/TelnetNegotiationCore.TestServer.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

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

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -17,7 +17,7 @@
1717
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
1818
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
1919
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
20-
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
20+
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
2121
</ItemGroup>
2222

2323
<ItemGroup>

TelnetNegotiationCore.UnitTests/TelnetNegotiationCore.UnitTests.csproj

+4-4
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
<IsPackable>false</IsPackable>
66
<PlatformTarget>AnyCPU</PlatformTarget>
77
</PropertyGroup>
@@ -15,12 +15,12 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
18+
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
1919
<PackageReference Include="NUnit" Version="3.13.3" />
2020
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
21-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
21+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
2222
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
23-
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
23+
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

TelnetNegotiationCore/TelnetNegotiationCore.csproj

+6-6
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
<LangVersion>latest</LangVersion>
66
<Version>1.0.7</Version>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
@@ -48,15 +48,15 @@
4848
<Pack>true</Pack>
4949
<PackagePath>lib\$(TargetFramework)</PackagePath>
5050
</Content>
51-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
52-
<PackageReference Include="OneOf" Version="3.0.263" />
53-
<PackageReference Include="stateless" Version="5.15.0" />
54-
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
51+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
52+
<PackageReference Include="OneOf" Version="3.0.271" />
53+
<PackageReference Include="stateless" Version="5.16.0" />
54+
<PackageReference Include="System.Collections.Immutable" Version="9.0.0" />
5555
<PackageReference Include="System.Runtime" Version="4.3.1" />
5656
</ItemGroup>
5757

5858
<ItemGroup>
59-
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj" PrivateAssets="all"/>
59+
<ProjectReference Include="..\TelnetNegotiationCore.Functional\TelnetNegotiationCore.Functional.fsproj" PrivateAssets="all" />
6060
</ItemGroup>
6161

6262
</Project>

0 commit comments

Comments
 (0)