Skip to content

Commit 2b3e6cd

Browse files
authored
Merge pull request #238 from hangy/net10.0
Test on .NET 10 and upgrade deps
2 parents 19ea4f2 + cb1e6d8 commit 2b3e6cd

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
contents: write
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- name: Setup
27-
uses: actions/setup-dotnet@v4
27+
uses: actions/setup-dotnet@v5
2828
with:
2929
global-json-file: global.json
3030
- name: Compute build number

global.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "10.0.100",
44
"allowPrerelease": false,
55
"rollForward": "latestFeature"
66
}
77
}
8-

src/Serilog.Sinks.ApplicationInsights/Serilog.Sinks.ApplicationInsights.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Serilog" Version="4.2.0" />
26+
<PackageReference Include="Serilog" Version="4.3.0" />
2727
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.23.0" />
2828
</ItemGroup>
2929

test/Serilog.Sinks.ApplicationInsights.Tests/Serilog.Sinks.ApplicationInsights.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net4.8</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net10.0;net4.8</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
77
<DeterministicSourcePaths>false</DeterministicSourcePaths>
88
<GenerateDocumentationFile>false</GenerateDocumentationFile>
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0"/>
13-
<PackageReference Include="xunit" Version="2.4.1"/>
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1"/>
13+
<PackageReference Include="xunit" Version="2.9.3"/>
14+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1717
</PackageReference>

0 commit comments

Comments
 (0)