Update NuGet packages

This commit is contained in:
Oleksii Holub
2022-12-08 22:19:19 +02:00
parent f3830247fe
commit 07b72b9023
6 changed files with 2 additions and 6 deletions

View File

@@ -12,7 +12,6 @@ public abstract class TokenCommandBase : ICommand
[CommandOption(
"token",
't',
IsRequired = true,
EnvironmentVariable = "DISCORD_TOKEN",
Description = "Authentication token."
)]

View File

@@ -15,7 +15,6 @@ public class ExportChannelsCommand : ExportCommandBase
[CommandOption(
"channel",
'c',
IsRequired = true,
Description = "Channel ID(s)."
)]
public required IReadOnlyList<Snowflake> ChannelIds { get; init; }

View File

@@ -15,7 +15,6 @@ public class ExportGuildCommand : ExportCommandBase
[CommandOption(
"guild",
'g',
IsRequired = true,
Description = "Guild ID."
)]
public required Snowflake GuildId { get; init; }

View File

@@ -16,7 +16,6 @@ public class GetChannelsCommand : TokenCommandBase
[CommandOption(
"guild",
'g',
IsRequired = true,
Description = "Guild ID."
)]
public required Snowflake GuildId { get; init; }

View File

@@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CliFx" Version="2.3.0" />
<PackageReference Include="CliFx" Version="2.3.1" />
<PackageReference Include="Spectre.Console" Version="0.45.0" />
<PackageReference Include="Gress" Version="2.0.1" />
<PackageReference Include="DotnetRuntimeBootstrapper" Version="2.4.0" PrivateAssets="all" />