From b69c10bed1c1fab8f39d3d4a2a47ddee70839117 Mon Sep 17 00:00:00 2001 From: Bert Temme Date: Mon, 22 Jul 2024 12:31:47 +0200 Subject: [PATCH] to net 8 --- Dockerfile | 4 ++-- README.md | 2 +- src/i3dm.export.csproj | 2 +- tests/i3dm.export.tests.csproj | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2f8658c..619c76f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM mcr.microsoft.com/dotnet/sdk:6.0 as build +FROM mcr.microsoft.com/dotnet/sdk:8.0 as build WORKDIR /src COPY . . RUN dotnet build "src/i3dm.export.csproj" -c Release RUN dotnet publish "src/i3dm.export.csproj" -c Release -o /app -FROM mcr.microsoft.com/dotnet/runtime:6.0 +FROM mcr.microsoft.com/dotnet/runtime:8.0 WORKDIR /app COPY --from=build /app /app/ ENTRYPOINT ["dotnet", "i3dm.export.dll"] \ No newline at end of file diff --git a/README.md b/README.md index b9ae3c9..d27d045 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For composite tile (cmpt) specs see https://github.com/CesiumGS/3d-tiles/blob/ma ## Installation -Prerequisite: .NET 6.0 SDK is installed https://dotnet.microsoft.com/download/dotnet/6.0 +Prerequisite: .NET 8.0 SDK is installed https://dotnet.microsoft.com/download/dotnet/8.0 ``` $ dotnet tool install -g i3dm.export diff --git a/src/i3dm.export.csproj b/src/i3dm.export.csproj index e75c3d1..d40ea31 100644 --- a/src/i3dm.export.csproj +++ b/src/i3dm.export.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 i3dm.export ./nupkg 2.7.4 diff --git a/tests/i3dm.export.tests.csproj b/tests/i3dm.export.tests.csproj index 39227ed..40cb858 100644 --- a/tests/i3dm.export.tests.csproj +++ b/tests/i3dm.export.tests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 false