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

Commit

Permalink
Merge pull request #3 from OoLunar/master
Browse files Browse the repository at this point in the history
Update to D#+ 4.3.0
  • Loading branch information
Giggitybyte authored Jan 4, 2023
2 parents 1574a5f + 23d83dc commit 5791d79
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 19 deletions.
33 changes: 17 additions & 16 deletions DSharpPlusDocs.csproj
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>DSharpPlusDocs</AssemblyName>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.3.0-nightly-01134" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0-nightly-01134" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0-nightly-01134" />
<PackageReference Include="DSharpPlus.Rest" Version="4.3.0-nightly-01134" />
<PackageReference Include="DSharpPlus.VoiceNext" Version="4.3.0-nightly-01134" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.2.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.1" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>DSharpPlusDocs</AssemblyName>
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.3.0" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0" />
<PackageReference Include="DSharpPlus.Rest" Version="4.3.0" />
<PackageReference Include="DSharpPlus.VoiceNext" Version="4.3.0" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.3.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.4.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="5.0.0" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0-alpine AS build
WORKDIR /src

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

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

ENTRYPOINT /src/DSharpPlusDocs
ENTRYPOINT /src/DSharpPlusDocs

0 comments on commit 5791d79

Please # to comment.