-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWabbaBot.csproj
30 lines (26 loc) · 1.14 KB
/
WabbaBot.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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<RootNamespace />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.4.9" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.4.9" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.4.9" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.4.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="Wabbajack.DTOs" Version="3.6.1.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>
</Project>