Skip to content

Commit 67b74ae

Browse files
authored
Merge pull request #124 from nickbabcock/net8
Bump project to net8
2 parents 08cb18d + cf52aec commit 67b74ae

File tree

9 files changed

+13
-14
lines changed

9 files changed

+13
-14
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
ARG NET_VERSION=6.0
2-
FROM mcr.microsoft.com/vscode/devcontainers/dotnet:0.204-${NET_VERSION}-bullseye
1+
FROM mcr.microsoft.com/vscode/devcontainers/dotnet:1.5.4-8.0
32

43
RUN apt-get update && apt-get install -y \
54
apt-transport-https \

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
dev:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515
with:
1616
submodules: true
1717
- run: docker build .
@@ -25,12 +25,12 @@ jobs:
2525
matrix:
2626
os: ['ubuntu-latest', 'windows-latest']
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v5
2929
with:
3030
submodules: true
31-
- uses: actions/setup-dotnet@v3
31+
- uses: actions/setup-dotnet@v5
3232
with:
33-
dotnet-version: '6.0.x'
33+
dotnet-version: '8.0.x'
3434
- run: dotnet build src/Pfim/Pfim.csproj
3535
- run: dotnet build src/Pfim.ImageSharp/Pfim.ImageSharp.csproj
3636
- run: dotnet build src/Pfim.Skia/Pfim.Skia.csproj
@@ -44,7 +44,7 @@ jobs:
4444
name: netframework
4545
runs-on: 'windows-latest'
4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v5
4848
with:
4949
submodules: true
5050
- run: dotnet build src/Pfim/Pfim.csproj

src/Pfim.Benchmarks/Pfim.Benchmarks.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<PlatformTarget>AnyCPU</PlatformTarget>
77
</PropertyGroup>
88

src/Pfim.ImageSharp/Pfim.ImageSharp.csproj

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

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

88
<ItemGroup>

src/Pfim.MonoGame/Pfim.MonoGame.csproj

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

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

88
<ItemGroup>

src/Pfim.Skia/Pfim.Skia.csproj

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

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

88
<ItemGroup>

src/Pfim.Viewer.Forms/Pfim.Viewer.Forms.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0-windows</TargetFramework>
3+
<TargetFramework>net8.0-windows</TargetFramework>
44
<OutputType>WinExe</OutputType>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<UseWindowsForms>true</UseWindowsForms>

src/Pfim.Viewer/Pfim.Viewer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0-windows</TargetFramework>
3+
<TargetFramework>net8.0-windows</TargetFramework>
44
<OutputType>WinExe</OutputType>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<UseWPF>true</UseWPF>

tests/Pfim.Tests/Pfim.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
66
<PackageReference Include="Farmhash.Sharp" Version="0.9.0" />

0 commit comments

Comments
 (0)