2023-01-18 18:17:33 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<Version>1.0.0</Version>
|
|
|
|
<Title>Boyfriend</Title>
|
|
|
|
<Authors>Octol1ttle, mctaylors</Authors>
|
|
|
|
<Copyright>AGPLv3</Copyright>
|
|
|
|
<PackageProjectUrl>https://github.com/TeamOctolings/Boyfriend</PackageProjectUrl>
|
|
|
|
<PackageLicenseUrl>https://github.com/TeamOctolings/Boyfriend/blob/master/LICENSE</PackageLicenseUrl>
|
2023-01-18 19:01:22 +03:00
|
|
|
<RepositoryUrl>https://github.com/TeamOctolings/Boyfriend</RepositoryUrl>
|
2023-01-18 18:17:33 +03:00
|
|
|
<RepositoryType>github</RepositoryType>
|
|
|
|
<Company>TeamOctolings</Company>
|
|
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
|
|
<Description>A legacy-driven Discord bot written in C#</Description>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-03-28 13:28:34 +03:00
|
|
|
<PackageReference Include="Discord.Net" Version="3.10.0"/>
|
2023-01-18 18:17:33 +03:00
|
|
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
|
|
|
<PackageReference Include="Humanizer.Core.ru" Version="2.14.1" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|