-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRoboBot.csproj
42 lines (37 loc) · 1.7 KB
/
RoboBot.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AppConfig>app.config</AppConfig>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>3</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.3.0-nightly-01175" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0-nightly-01175" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0-nightly-01175" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.3.0-nightly-01175" />
<PackageReference Include="FFMpegCore" Version="4.2.0" />
<PackageReference Include="FluentFTP" Version="33.0.3" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.46" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.9" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="SpeedrunComSharp">
<HintPath>SpeedrunComSharp.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="app.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="specialappsettings.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>