Skip to content

Commit d184cfe

Browse files
authored
Merge pull request #262 from gitfool/renovate/major-dotnet-monorepo
2 parents b64e955 + 03595ce commit d184cfe

File tree

7 files changed

+321
-323
lines changed

7 files changed

+321
-323
lines changed

Diff for: Cli/Cli.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55

66
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
77
<AssemblyName>bgg-dungeon</AssemblyName>
@@ -30,8 +30,8 @@
3030
<PackageReference Include="Flurl" Version="4.0.0" />
3131
<PackageReference Include="Flurl.Http" Version="4.0.2" />
3232
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
33-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.1" />
34-
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
33+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
34+
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.1" />
3535
<PackageReference Include="NetEscapades.Configuration.Yaml" Version="3.1.0" />
3636
<PackageReference Include="Polly" Version="8.5.2" />
3737
<PackageReference Include="Serilog" Version="4.2.0" />

Diff for: Cli/Dockerfile

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# syntax=docker/dockerfile:1
2-
FROM mcr.microsoft.com/dotnet/runtime:8.0.12-jammy
2+
FROM mcr.microsoft.com/dotnet/runtime:9.0.1-noble
33

44
LABEL org.opencontainers.image.source=https://github.com/gitfool/BoardGameGeek.Dungeon
55

@@ -11,16 +11,14 @@ RUN <<EOF
1111
rm -rf /var/lib/apt/lists/*
1212
EOF
1313

14-
# Add non-root user
14+
# Modify non-root user
1515
RUN <<EOF
1616
set -ex
17-
groupadd --gid 1000 user
18-
useradd --uid 1000 --gid 1000 --shell /bin/bash -m user
19-
echo "user ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/user
20-
chmod 0440 /etc/sudoers.d/user
17+
echo "ubuntu ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/ubuntu
18+
chmod 0440 /etc/sudoers.d/ubuntu
2119
EOF
2220

23-
USER user
21+
USER ubuntu
2422

2523
RUN <<EOF
2624
set -ex

Diff for: Cli/packages.lock.json

+155-155
Large diffs are not rendered by default.

Diff for: Library/Library.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
</PropertyGroup>
55

66
<ItemGroup>

Diff for: Library/packages.lock.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"version": 1,
33
"dependencies": {
4-
"net8.0": {
4+
"net9.0": {
55
"FluentValidation": {
66
"type": "Direct",
77
"requested": "[11.11.0, )",

Diff for: Tests/Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44

55
<IsPackable>false</IsPackable>
66
<IsTestProject>true</IsTestProject>

Diff for: Tests/packages.lock.json

+155-155
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)