Skip to content

Commit 2c71291

Browse files
committed
Many changes to synchronisation and stats dumping to fix issues, add a delay on scan, change to build for ARM
1 parent c6b6f14 commit 2c71291

13 files changed

Lines changed: 19960 additions & 256 deletions

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ updates:
66
interval: weekly
77
labels:
88
- "infra"
9-
reviewers:
10-
- TSRBerry
119
commit-message:
1210
prefix: "ci"
1311

@@ -18,7 +16,5 @@ updates:
1816
interval: daily
1917
labels:
2018
- "infra"
21-
reviewers:
22-
- TSRBerry
2319
commit-message:
2420
prefix: nuget

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ WORKDIR /source
66
RUN apk add --no-cache clang gcc musl-dev zlib-dev
77

88
COPY *.csproj .
9-
RUN dotnet restore -r linux-musl-x64
9+
RUN dotnet restore -r linux-musl-arm64
1010

1111
COPY . .
12-
RUN dotnet publish -c release -o /app -r linux-musl-x64 --no-restore LanPlayServer.csproj
12+
RUN dotnet publish -c release -o /app -r linux-musl-arm64 --no-restore LanPlayServer.csproj
1313

1414
FROM alpine:latest
1515
WORKDIR /app

LanPlayServer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<TargetFramework>net8.0</TargetFramework>
66
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
77
<PublishAot>true</PublishAot>
8+
<JsonSerializerIsReflectionEnabledByDefault>true</JsonSerializerIsReflectionEnabledByDefault>
89
</PropertyGroup>
910

1011
<ItemGroup>

0 commit comments

Comments
 (0)