-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEconomyBot.csproj
More file actions
95 lines (93 loc) · 4.35 KB
/
EconomyBot.csproj
File metadata and controls
95 lines (93 loc) · 4.35 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<MetadataUpdaterSupport>false</MetadataUpdaterSupport>
<!-- <UseSystemResourceKeys>true</UseSystemResourceKeys>-->
<ThreadPoolMinThreads>1</ThreadPoolMinThreads>
<ThreadPoolMaxThreads>4</ThreadPoolMaxThreads>
</PropertyGroup>
<ItemGroup>
<Content Include="bin\Debug\net10.0\runtimes\linux-x64\native\libe_sqlite3.so"/>
<Content Include="lua\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Update="bot.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Launch.ps1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Lavalink.jar">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="application.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="launch.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="launch2.sh">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="artists.sdl">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="bin\Debug\net10.0\runtimes\linux-x64\native\"/>
<Folder Include="lua\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ConcurrentHashSet" Version="1.3.0"/>
<PackageReference Include="BooruSharp" Version="4.0.0-beta"/>
<PackageReference Include="DetectLanguage" Version="2.0.0" />
<PackageReference Include="DisCatSharp.Attributes" Version="2025.3.27" />
<PackageReference Include="FuzzierSharp" Version="3.0.1" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="10.0.0-rc.1.25451.107" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4-beta1" />
<PackageReference Include="Reddit" Version="1.5.2" />
<PackageReference Include="RestSharp" Version="112.1.1-alpha.0.4" />
<PackageReference Include="Spectre.Console" Version="0.51.2-preview.0.1" />
<PackageReference Include="SpotifyAPI.Web" Version="7.2.1"/>
<PackageReference Include="Soulseek" Version="8.0.0" />
<Reference Include="DisCatSharp">
<HintPath>DisCatSharp.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Common">
<HintPath>DisCatSharp.Common.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.CommandsNext">
<HintPath>DisCatSharp.CommandsNext.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Interactivity">
<HintPath>DisCatSharp.Interactivity.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.ApplicationCommands">
<HintPath>DisCatSharp.ApplicationCommands.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Lavalink">
<HintPath>DisCatSharp.Lavalink.dll</HintPath>
</Reference>
<Reference Include="DisCatSharp.Attributes">
<HintPath>DisCatSharp.Attributes.dll</HintPath>
</Reference>
<Reference Include="Spectre.Console">
<HintPath>Spectre.Console.dll</HintPath>
</Reference>
</ItemGroup>
</Project>