-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bishop.csproj
77 lines (77 loc) · 3.85 KB
/
Bishop.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<InvariantGlobalization>false</InvariantGlobalization>
<FileUpgradeFlags>40</FileUpgradeFlags>
<OldToolsVersion>Current</OldToolsVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\aleds.json" />
<None Remove="Resources\horoscopes.json" />
<None Remove="Resources\quotes.json" />
<None Remove="Resources\slenders.json" />
<None Remove="Resources\Slenders.png" />
<None Remove="Resources\tomatoes.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\quotes.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\aleds.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\grive\pigtures\pink.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\grive\helluvazbin\red.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\grive\music\sample.ogg">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\horoscopes.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\tomatoes.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\slenders.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\Slenders.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\weatherBeacons.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="4.3.0" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.3.0" />
<PackageReference Include="DSharpPlus.Interactivity" Version="4.3.0" />
<PackageReference Include="DSharpPlus.SlashCommands" Version="4.3.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.42" />
<PackageReference Include="log4net" Version="2.0.12" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="MongoDB.Driver" Version="2.12.4" />
<PackageReference Include="Plotly.NET" Version="3.0.1" />
<PackageReference Include="Plotly.NET.ImageExport" Version="3.0.0" />
<PackageReference Include="RestSharp" Version="107.3.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\slenders.json" />
<Resource Include="Resources\Slenders.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\grive" />
<Content Include="Resources\grive\pigtures\pink.png" />
<Content Include="Resources\grive\helluvazbin\red.png" />
<Content Include="Resources\grive\music\sample.ogg" />
</ItemGroup>
</Project>