mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
bca1b10749
Bumps [JetBrains.Annotations](https://github.com/JetBrains/JetBrains.Annotations) from 2023.2.0 to 2023.3.0. <details> <summary>Commits</summary> <ul> <li><a href="e00a7e4a16
"><code>e00a7e4</code></a> 2023.3</li> <li><a href="c2392bcd88
"><code>c2392bc</code></a> 2023.3-eap4</li> <li><a href="a37383560a
"><code>a373835</code></a> Merge pull request <a href="https://redirect.github.com/JetBrains/JetBrains.Annotations/issues/24">#24</a> from estrizhok/main</li> <li><a href="938031843a
"><code>9380318</code></a> Allow NoReorderAttribute to be used for partial classes to indicate which par...</li> <li><a href="0dea5ba41c
"><code>0dea5ba</code></a> Merge pull request <a href="https://redirect.github.com/JetBrains/JetBrains.Annotations/issues/23">#23</a> from mr146/main</li> <li><a href="6565d31d95
"><code>6565d31</code></a> fixes</li> <li><a href="a3284206c7
"><code>a328420</code></a> Added IgnoreSpellingAndGrammarErrorsAttribute and AspMinimalApiImplicitEndpoi...</li> <li><a href="53cd720d72
"><code>53cd720</code></a> 2023.3.0-eap2</li> <li><a href="0a43548b16
"><code>0a43548</code></a> Merge pull request <a href="https://redirect.github.com/JetBrains/JetBrains.Annotations/issues/22">#22</a> from tutushkin/main</li> <li><a href="802aa5f772
"><code>802aa5f</code></a> Fixed after review,</li> <li>Additional commits viewable in <a href="https://github.com/JetBrains/JetBrains.Annotations/compare/v2023.2.0...2023.3">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=JetBrains.Annotations&package-manager=nuget&previous-version=2023.2.0&new-version=2023.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
2.1 KiB
XML
42 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.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/LabsDevelopment/Octobot</PackageProjectUrl>
|
|
<PackageLicenseUrl>https://github.com/LabsDevelopment/Octobot/blob/master/LICENSE</PackageLicenseUrl>
|
|
<RepositoryUrl>https://github.com/LabsDevelopment/Octobot</RepositoryUrl>
|
|
<RepositoryType>github</RepositoryType>
|
|
<Company>LabsDevelopment</Company>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<Description>A general-purpose Discord bot for moderation written in C#</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DiffPlex" Version="1.7.1" />
|
|
<PackageReference Include="Humanizer.Core.ru" Version="2.14.1" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
|
<PackageReference Include="Remora.Discord.Caching" Version="37.0.0" />
|
|
<PackageReference Include="Remora.Discord.Extensions" Version="5.3.2" />
|
|
<PackageReference Include="Remora.Discord.Hosting" Version="6.0.7" />
|
|
<PackageReference Include="Remora.Discord.Interactivity" Version="4.5.1" />
|
|
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="locale\Messages.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="CodeAnalysis\BannedSymbols.txt" />
|
|
</ItemGroup>
|
|
</Project>
|