-
Notifications
You must be signed in to change notification settings - Fork 0
/
HyBot.csproj
26 lines (21 loc) · 885 Bytes
/
HyBot.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="5.0.0-nightly-00009" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="5.0.0-nightly-00009" />
<PackageReference Include="DSharpPlus.Interactivity" Version="5.0.0-nightly-00009" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="5.0.0-nightly-00009" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3-beta1" />
</ItemGroup>
<ItemGroup>
<None Remove="config.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Config\config.json" />
</ItemGroup>
</Project>