Skip to content

Commit bcf63e3

Browse files
committed
Upgrade DSharpPlus to 5.0.0-nightly-02449, disable invariant everywhere
1 parent b5d3a01 commit bcf63e3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Cliptok.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@
66
<LangVersion>13.0</LangVersion>
77
<UserSecretsId>d9345310-5908-4697-8613-28a24d06d183</UserSecretsId>
88

9+
<InvariantGlobalization>false</InvariantGlobalization>
10+
911
<!-- <RestoreAdditionalProjectSources>
1012
https://www.myget.org/F/erisa/api/v3/index.json
1113
</RestoreAdditionalProjectSources> -->
1214
</PropertyGroup>
1315

1416
<ItemGroup>
1517
<PackageReference Include="Abyssal.HumanDateParser" Version="2.0.0-20191113.1" />
16-
<PackageReference Include="DSharpPlus" Version="5.0.0-nightly-02448" />
17-
<PackageReference Include="DSharpPlus.Commands" Version="5.0.0-nightly-02448" />
18+
<PackageReference Include="DSharpPlus" Version="5.0.0-nightly-02449" />
19+
<PackageReference Include="DSharpPlus.Commands" Version="5.0.0-nightly-02449" />
1820
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.1" />
1921
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.1" />
2022
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="9.0.1" />

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ RUN touch dummy.txt && \
2525
FROM mcr.microsoft.com/dotnet/runtime:9.0.0-alpine3.20
2626
LABEL com.centurylinklabs.watchtower.enable=true
2727
WORKDIR /app
28-
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
29-
RUN apk add --no-cache git redis openssh icu-libs
28+
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false \
29+
LC_ALL=en_US.UTF-8 \
30+
LANG=en_US.UTF-8
31+
RUN apk add --no-cache git redis openssh icu-libs icu-data-full
3032
RUN git config --global --add safe.directory /app/Lists/Private
3133
COPY --from=build-env /app/out .
3234
ADD Lists ./Lists

0 commit comments

Comments
 (0)