Skip to content

Commit cd97d91

Browse files
committed
Update testproject to net8 and c# to 12
1 parent c6fda62 commit cd97d91

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
matrix:
1414
options:
1515
- os: ubuntu-latest
16-
framework: net6.0
16+
framework: net8.0
1717
runtime: -x64
1818
codecov: false
1919
- os: macos-latest
20-
framework: net6.0
20+
framework: net8.0
2121
runtime: -x64
2222
codecov: false
2323
- os: windows-latest
24-
framework: net6.0
24+
framework: net8.0
2525
runtime: -x64
2626
codecov: true
2727

msbuild/props/SixLabors.Global.props

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

6363
<!-- Compilation settings that explicitly differ from the Sdk.props/targets defaults -->
6464
<PropertyGroup>
65-
<LangVersion>10.0</LangVersion>
65+
<LangVersion>12.0</LangVersion>
6666
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6767
<Features>strict;IOperation</Features>
6868
<HighEntropyVA>true</HighEntropyVA>

tests/SharedInfrastructure.Tests/SharedInfrastructure.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-
<TargetFrameworks>net6.0;</TargetFrameworks>
4+
<TargetFrameworks>net8.0;</TargetFrameworks>
55
<AssemblyName>SharedInfrastructure.Tests</AssemblyName>
66
<RootNamespace>SharedInfrastructure.Tests</RootNamespace>
77
<Nullable>enable</Nullable>

0 commit comments

Comments
 (0)