Skip to content

Commit 95d8e6d

Browse files
Update dotnet monorepo to v8
1 parent 0b6bf9e commit 95d8e6d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# TARGETPLATFORM and BUILDPLATFORM are automatically filled in by Docker buildx.
22
# They should not be set in the global scope manually.
33

4-
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:6.0 AS builder
4+
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:8.0 AS builder
55

66
# Copy build context
77
WORKDIR /TShock
@@ -30,7 +30,7 @@ RUN \
3030
dotnet publish -o output/ -r "${ARCH}" -v m -f net6.0 -c Release -p:PublishSingleFile=true --self-contained false
3131

3232
# Runtime image
33-
FROM --platform=${TARGETPLATFORM} mcr.microsoft.com/dotnet/runtime:6.0 AS runner
33+
FROM --platform=${TARGETPLATFORM} mcr.microsoft.com/dotnet/runtime:8.0 AS runner
3434
WORKDIR /server
3535
COPY --from=builder /TShock/TShockLauncher/output ./
3636

TShockAPI/TShockAPI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
3636
<PackageReference Include="GetText.NET" Version="1.7.14" />
3737
<PackageReference Include="MySql.Data" Version="8.0.31" />
38-
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.11" />
38+
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.7" />
3939
</ItemGroup>
4040

4141
<ItemGroup>

TShockLauncher/TShockLauncher.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<ItemGroup>
3232
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
3333
<PackageReference Include="MySql.Data" Version="8.0.31" />
34-
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.11" />
34+
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.7" />
3535
<PackageReference Include="ModFramework" Version="1.1.7" GeneratePathProperty="true" /> <!-- only used to extract out to ./bin. -->
3636
<PackageReference Include="GetText.NET" Version="1.7.14" /> <!-- only used to extract out to ./bin. -->
3737

TShockPluginManager/TShockPluginManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="NuGet.Protocol" Version="6.3.1" />
1212
<PackageReference Include="NuGet.Resolver" Version="6.3.1" />
1313
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
14-
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="6.0.0" />
14+
<PackageReference Include="System.Reflection.MetadataLoadContext" Version="8.0.0" />
1515
<PackageReference Include="GetText.NET" Version="1.7.14" />
1616
</ItemGroup>
1717

0 commit comments

Comments
 (0)