-
Notifications
You must be signed in to change notification settings - Fork 0
/
DimBot.csproj
34 lines (27 loc) · 1.05 KB
/
DimBot.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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Commands" Version="3.0.0" />
<PackageReference Include="Discord.Net.WebSocket" Version="3.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.1" />
<Using Include="Discord" />
<Using Include="Discord.WebSocket" />
<Using Include="Discord.Commands" />
<Using Remove="System.Net.Http" />
<Using Remove="System.IO" />
<Using Remove="System.Collections.Generic" />
<Using Remove="System.Threading" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<None Update="dimsecret.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>