-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli-bot.csproj
More file actions
39 lines (29 loc) · 1.04 KB
/
cli-bot.csproj
File metadata and controls
39 lines (29 loc) · 1.04 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace>cli_bot</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bots\**" />
<Compile Remove="Quill\**" />
<EmbeddedResource Remove="bots\**" />
<EmbeddedResource Remove="Quill\**" />
<None Remove="bots\**" />
<None Remove="Quill\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Quill.dll" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetSeleniumExtras.WaitHelpers" Version="3.11.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Selenium.WebDriver" Version="4.41.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Quill\dotnet\Quill.csproj" />
</ItemGroup>
</Project>