-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscordBot.csproj
43 lines (39 loc) · 1.51 KB
/
DiscordBot.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
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Labs" Version="3.6.1" />
<PackageReference Include="Discord.Net.Labs.Commands" Version="3.6.1" />
<PackageReference Include="Discord.Net.Labs.WebSocket" Version="3.6.1" />
<PackageReference Include="Google.Apis" Version="1.57.0" />
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.57.0.2657" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
<PackageReference Include="TweetinviAPI" Version="5.0.4" />
</ItemGroup>
<ItemGroup>
<Compile Update="Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Remove="BotWorker\**" />
</ItemGroup>
<ItemGroup>
<None Update="Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Remove="BotWorker\**" />
</ItemGroup>
<ItemGroup>
<Content Include="google-credentials.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="BotWorker\**" />
</ItemGroup>
</Project>