1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00
Octobot/TeamOctolings.Octobot/TeamOctolings.Octobot.csproj
dependabot[bot] 68a71cbe89
Bump the remora group with 5 updates
Bumps the remora group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [Remora.Discord.Caching](https://github.com/Remora/Remora.Discord) | `39.0.0` | `40.0.0` |
| [Remora.Commands](https://github.com/Remora/Remora.Commands) | `10.0.6` | `11.0.1` |
| [Remora.Discord.Extensions](https://github.com/Remora/Remora.Discord) | `5.3.6` | `6.0.0` |
| [Remora.Discord.Interactivity](https://github.com/Remora/Remora.Discord) | `5.0.0` | `6.0.0` |
| [Remora.Discord.Hosting](https://github.com/Remora/Remora.Discord) | `6.0.10` | `7.0.0` |


Updates `Remora.Discord.Caching` from 39.0.0 to 40.0.0
- [Release notes](https://github.com/Remora/Remora.Discord/releases)
- [Commits](https://github.com/Remora/Remora.Discord/commits)

Updates `Remora.Commands` from 10.0.6 to 11.0.1
- [Release notes](https://github.com/Remora/Remora.Commands/releases)
- [Commits](https://github.com/Remora/Remora.Commands/compare/10.0.6...11.0.1)

Updates `Remora.Discord.Extensions` from 5.3.6 to 6.0.0
- [Release notes](https://github.com/Remora/Remora.Discord/releases)
- [Commits](https://github.com/Remora/Remora.Discord/commits)

Updates `Remora.Discord.Interactivity` from 5.0.0 to 6.0.0
- [Release notes](https://github.com/Remora/Remora.Discord/releases)
- [Commits](https://github.com/Remora/Remora.Discord/commits)

Updates `Remora.Discord.Hosting` from 6.0.10 to 7.0.0
- [Release notes](https://github.com/Remora/Remora.Discord/releases)
- [Commits](https://github.com/Remora/Remora.Discord/commits)

---
updated-dependencies:
- dependency-name: Remora.Discord.Caching
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: remora
- dependency-name: Remora.Commands
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: remora
- dependency-name: Remora.Discord.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: remora
- dependency-name: Remora.Discord.Interactivity
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: remora
- dependency-name: Remora.Discord.Hosting
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: remora
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-17 05:35:44 +00:00

46 lines
2.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.0</Version>
<Title>Octobot</Title>
<Authors>Octol1ttle, mctaylors, neroduckale</Authors>
<Copyright>AGPLv3</Copyright>
<PackageProjectUrl>https://github.com/TeamOctolings/Octobot</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/TeamOctolings/Octobot/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/TeamOctolings/Octobot</RepositoryUrl>
<RepositoryType>github</RepositoryType>
<Company>TeamOctolings</Company>
<NeutralLanguage>en</NeutralLanguage>
<Description>A general-purpose Discord bot for moderation written in C#</Description>
<ApplicationIcon>../docs/octobot.ico</ApplicationIcon>
<GitVersion>false</GitVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DiffPlex" Version="1.7.2" />
<PackageReference Include="GitInfo" Version="3.3.5" />
<PackageReference Include="Humanizer.Core.ru" Version="2.14.1" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.0"/>
<PackageReference Include="Remora.Commands" Version="11.0.1"/>
<PackageReference Include="Remora.Discord.Caching" Version="40.0.0" />
<PackageReference Include="Remora.Discord.Extensions" Version="6.0.0"/>
<PackageReference Include="Remora.Discord.Hosting" Version="7.0.0" />
<PackageReference Include="Remora.Discord.Interactivity" Version="6.0.0"/>
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Messages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\CodeAnalysis\BannedSymbols.txt" />
</ItemGroup>
</Project>