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>
|
2023-07-09 16:32:14 +03:00
|
|
|
<Version>2.0.0</Version>
|
2023-01-18 18:17:33 +03:00
|
|
|
<Title>Boyfriend</Title>
|
2023-07-09 16:32:14 +03:00
|
|
|
<Authors>Octol1ttle, mctaylors, neroduckale</Authors>
|
2023-01-18 18:17:33 +03:00
|
|
|
<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>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-07-09 16:32:14 +03:00
|
|
|
<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\**" />
|
2023-01-18 18:17:33 +03:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|