-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDiscordNet.csproj
31 lines (27 loc) · 1.25 KB
/
DiscordNet.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<DebugType>portable</DebugType>
<AssemblyName>DiscordNet</AssemblyName>
<OutputType>Exe</OutputType>
<NeutralLanguage>en</NeutralLanguage>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Commands" Version="2.3.0-dev-20200525.6" />
<PackageReference Include="Discord.Net.Webhook" Version="2.3.0-dev-20200525.6" />
<PackageReference Include="Discord.Net.WebSocket" Version="2.3.0-dev-20200525.6" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="3.4.0" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.1" />
<PackageReference Include="Paginator" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Tokens\Discord.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Tokens\Github.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>