Skip to content

Commit

Permalink
bump .NET to 7.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgauthier committed Aug 22, 2023
1 parent 2bed823 commit cf82e29
Show file tree
Hide file tree
Showing 16 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.143" />
<PackageReference Include="Dapper" Version="2.0.151" />
<PackageReference Include="Npgsql" Version="7.0.4" />
<PackageReference Include="Npgsql.DependencyInjection" Version="7.0.4" />
<PackageReference Include="StackExchange.Redis" Version="2.6.116" />
<PackageReference Include="StackExchange.Redis" Version="2.6.122" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Discord.Net" Version="3.11.0" />
<PackageReference Include="Discord.Net" Version="3.12.0" />
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions src/TaylorBot.Net/Program.Commands.Discord/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0.305 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0.400 AS build
WORKDIR /app

ARG FEED_ACCESS_TOKEN
Expand Down Expand Up @@ -40,7 +40,7 @@ ENTRYPOINT ["dotnet", "test", "Tests.sln", "--no-build", "--configuration:Releas
FROM build AS publish
RUN dotnet publish --configuration Release --no-build --output out ./Program.Commands.Discord/src/TaylorBot.Net.Commands.Discord.Program/TaylorBot.Net.Commands.Discord.Program.csproj

FROM mcr.microsoft.com/dotnet/runtime:7.0.8 AS runtime
FROM mcr.microsoft.com/dotnet/runtime:7.0.10 AS runtime
WORKDIR /app
COPY --from=publish /app/out ./
ENTRYPOINT ["dotnet", "TaylorBot.Net.Commands.Discord.Program.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public LocationShowCommand(ILocationRepository locationRepository)
else
{
return new EmbedResult(EmbedFactory.CreateError(
$"""
$"""
{user.Mention}'s location is not set. 🚫
They need to use {context?.MentionCommand("location set") ?? "**/location set**"} to set it first.
They need to use {context?.MentionCommand("location set") ?? "</location set:1141925890448691270>"} to set it first.
"""
));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public WeatherCommand(IRateLimiter rateLimiter, ILocationRepository locationRepo
return new EmbedResult(EmbedFactory.CreateError(
$"""
{user.Mention}'s location is not set. 🚫
They need to use {context?.MentionCommand("location set") ?? "**/location set**"} to set it first.
They need to use {context?.MentionCommand("location set") ?? "</location set:1141925890448691270>"} to set it first.
"""
));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions src/TaylorBot.Net/Program.EntityTracker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0.305 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0.400 AS build
WORKDIR /app

ARG FEED_ACCESS_TOKEN
Expand Down Expand Up @@ -40,7 +40,7 @@ ENTRYPOINT ["dotnet", "test", "Tests.sln", "--no-build", "--configuration:Releas
FROM build AS publish
RUN dotnet publish --configuration Release --no-build --output out ./Program.EntityTracker/src/TaylorBot.Net.EntityTracker.Program/TaylorBot.Net.EntityTracker.Program.csproj

FROM mcr.microsoft.com/dotnet/runtime:7.0.8 AS runtime
FROM mcr.microsoft.com/dotnet/runtime:7.0.10 AS runtime
WORKDIR /app
COPY --from=publish /app/out ./
ENTRYPOINT ["dotnet", "TaylorBot.Net.EntityTracker.Program.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions src/TaylorBot.Net/Program.UserNotifier/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0.305 AS build
FROM mcr.microsoft.com/dotnet/sdk:7.0.400 AS build
WORKDIR /app

ARG FEED_ACCESS_TOKEN
Expand Down Expand Up @@ -40,7 +40,7 @@ ENTRYPOINT ["dotnet", "test", "Tests.sln", "--no-build", "--configuration:Releas
FROM build AS publish
RUN dotnet publish --configuration Release --no-build --output out ./Program.UserNotifier/src/TaylorBot.Net.UserNotifier.Program/TaylorBot.Net.UserNotifier.Program.csproj

FROM mcr.microsoft.com/dotnet/runtime:7.0.8 AS runtime
FROM mcr.microsoft.com/dotnet/runtime:7.0.10 AS runtime
WORKDIR /app
COPY --from=publish /app/out ./
ENTRYPOINT ["dotnet", "TaylorBot.Net.UserNotifier.Program.dll"]
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PackageReference>
<PackageReference Include="FakeItEasy" Version="7.4.0" />
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions src/taylorbot-typescript/commands/stats/Profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class ProfileCommand extends Command {
name: 'profile',
aliases: ['info', 'asl'],
group: 'Stats 📊',
description: 'This command has been removed. Please use </birthday age:1016938623880400907>, **/location show** instead.',
description: 'This command has been removed. Please use </birthday age:1016938623880400907>, </location show:1141925890448691270> instead.',
examples: [''],

args: [
Expand All @@ -24,7 +24,7 @@ class ProfileCommand extends Command {
async run({ message, client }: CommandMessageContext): Promise<void> {
await client.sendEmbedError(message.channel, [
`This command has been removed.`,
`Please use </birthday age:1016938623880400907>, **/location show** instead.`
`Please use </birthday age:1016938623880400907>, </location show:1141925890448691270> instead.`
].join('\n'));
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/taylorbot-typescript/commands/weather/WeatherAt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class WeatherCommand extends Command {
super({
name: 'weatherat',
group: 'Weather 🌦',
description: 'This command has been removed. Please use **/location weather** with the **location** option instead.',
description: 'This command has been removed. Please use </location weather:1141925890448691270> with the **location** option instead.',
examples: [''],

args: [
Expand All @@ -23,7 +23,7 @@ class WeatherCommand extends Command {
async run({ message, client }: CommandMessageContext): Promise<void> {
await client.sendEmbedError(message.channel, [
'This command has been removed.',
'Please use **/location weather** with the **location** option instead.'
'Please use </location weather:1141925890448691270> with the **location** option instead.'
].join('\n'));
}
}
Expand Down

0 comments on commit cf82e29

Please sign in to comment.