Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit 5791d79

Browse files
authored
Merge pull request #3 from OoLunar/master
Update to D#+ 4.3.0
2 parents 1574a5f + 23d83dc commit 5791d79

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

DSharpPlusDocs.csproj

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
4-
<DebugType>portable</DebugType>
5-
<AssemblyName>DSharpPlusDocs</AssemblyName>
6-
<OutputType>Exe</OutputType>
7-
</PropertyGroup>
8-
<ItemGroup>
9-
<PackageReference Include="DSharpPlus" Version="4.3.0-nightly-01134" />
10-
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0-nightly-01134" />
11-
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0-nightly-01134" />
12-
<PackageReference Include="DSharpPlus.Rest" Version="4.3.0-nightly-01134" />
13-
<PackageReference Include="DSharpPlus.VoiceNext" Version="4.3.0-nightly-01134" />
14-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
15-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.2.0" />
16-
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.1" />
17-
</ItemGroup>
2+
<PropertyGroup>
3+
<TargetFramework>net7.0</TargetFramework>
4+
<DebugType>portable</DebugType>
5+
<AssemblyName>DSharpPlusDocs</AssemblyName>
6+
<OutputType>Exe</OutputType>
7+
</PropertyGroup>
8+
<ItemGroup>
9+
<PackageReference Include="DSharpPlus" Version="4.3.0" />
10+
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0" />
11+
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0" />
12+
<PackageReference Include="DSharpPlus.Rest" Version="4.3.0" />
13+
<PackageReference Include="DSharpPlus.VoiceNext" Version="4.3.0" />
14+
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.3.0" />
15+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
16+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.4.0" />
17+
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
18+
</ItemGroup>
1819
</Project>

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine AS build
22
WORKDIR /src
33

44
COPY ./ /src
@@ -7,7 +7,7 @@ RUN dotnet restore -r linux-musl-x64 && dotnet publish -c Release -r linux-musl-
77
FROM alpine:latest
88
WORKDIR /src
99

10-
COPY --from=build /src/bin/Release/net6.0/linux-musl-x64/publish /src
10+
COPY --from=build /src/bin/Release/net7.0/linux-musl-x64/publish /src
1111
RUN apk upgrade --update-cache --available && apk add openssl libstdc++ icu-libs && rm -rf /var/cache/apk/*
1212

13-
ENTRYPOINT /src/DSharpPlusDocs
13+
ENTRYPOINT /src/DSharpPlusDocs

0 commit comments

Comments
 (0)