mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
Octol1ttle
793afd0e06
1. The root namespace was changed from `Octobot` to `TeamOctolings.Octobot`: > DO prefix namespace names with a company name to prevent namespaces from different companies from having the same name. 2. `Octobot.cs` was renamed to `Program.cs`: > DO NOT use the same name for a namespace and a type in that namespace. 3. `IOption`, `Option` were renamed to `IGuildOption` and `GuildOption` respectively: > DO NOT introduce generic type names such as Element, Node, Log, and Message. 4. `Utility` was moved out of the `Services` namespace. It didn't belong there anyway 5. `Program` static fields were moved to `Utility` 6. Localisation files were moved back to the project source files. Looks like this fixed `Message.Designer.cs` code generation --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
46 lines
2.3 KiB
XML
46 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.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.4" />
|
|
<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="8.0.0" />
|
|
<PackageReference Include="Remora.Commands" Version="10.0.5" />
|
|
<PackageReference Include="Remora.Discord.Caching" Version="38.0.1" />
|
|
<PackageReference Include="Remora.Discord.Extensions" Version="5.3.4" />
|
|
<PackageReference Include="Remora.Discord.Hosting" Version="6.0.9" />
|
|
<PackageReference Include="Remora.Discord.Interactivity" Version="4.5.3" />
|
|
<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>
|