-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DiscordModBot.csproj
26 lines (26 loc) · 1.05 KB
/
DiscordModBot.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
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>ModBot</RootNamespace>
<AssemblyName>DiscordModBot</AssemblyName>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>Latest</LangVersion>
<Product>DiscordModBot</Product>
<PackageId>DiscordModBot</PackageId>
<Copyright>Copyright (C) Alex "mcmonkey" Goodwin 2018-2022</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FreneticLLC.FreneticUtilities" Version="1.0.24" />
<PackageReference Include="Discord.Net" Version="3.13.0" />
<PackageReference Include="Discord.Net.WebSocket" Version="3.13.0" />
<PackageReference Include="LiteDB" Version="5.0.17" />
</ItemGroup>
<ItemGroup>
<Compile Remove="mcmonkeyDiscordBotBase\*.*" />
<Compile Remove="mcmonkeyDiscordBotBase\**\*.*" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="mcmonkeyDiscordBotBase\mcmonkeyDiscordBotBase.csproj" />
</ItemGroup>
</Project>