forked from TeamInklings/Octobot
Octol1ttle
abbb58f801
result checks go brrr this also involves switching to using Discord's modern stuff like embeds and interactions and using brand-new for me programming concepts (dependency injection, results) --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com> Signed-off-by: mctaylors <95250141+mctaylors@users.noreply.github.com> Co-authored-by: mctaylors <95250141+mctaylors@users.noreply.github.com> Co-authored-by: nrdk <neroduck@vk.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
1.9 KiB
XML
49 lines
1.9 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>Boyfriend</Title>
|
|
<Authors>Octol1ttle, mctaylors, neroduckale</Authors>
|
|
<Copyright>AGPLv3</Copyright>
|
|
<PackageProjectUrl>https://github.com/TeamOctolings/Boyfriend</PackageProjectUrl>
|
|
<PackageLicenseUrl>https://github.com/TeamOctolings/Boyfriend/blob/master/LICENSE</PackageLicenseUrl>
|
|
<RepositoryUrl>https://github.com/TeamOctolings/Boyfriend</RepositoryUrl>
|
|
<RepositoryType>github</RepositoryType>
|
|
<Company>TeamOctolings</Company>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<Description>A legacy-driven Discord bot written in C#</Description>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DiffPlex" Version="1.7.1" />
|
|
<PackageReference Include="Humanizer.Core.ru" Version="2.14.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
|
<PackageReference Include="Remora.Discord" Version="2023.3.0" />
|
|
</ItemGroup>
|
|
|
|
<!-- TODO: remove this when done -->
|
|
<ItemGroup>
|
|
<Compile Remove="old\**" />
|
|
<Compile Update="Messages.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Messages.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Remove="old\**" />
|
|
<EmbeddedResource Update="Messages.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="old\**" />
|
|
</ItemGroup>
|
|
</Project>
|