-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBot.csproj
More file actions
36 lines (31 loc) · 1.51 KB
/
Bot.csproj
File metadata and controls
36 lines (31 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CachingFramework.Redis" Version="17.1.0" />
<PackageReference Include="Dapper" Version="2.1.72" />
<PackageReference Include="Discord.Webhook" Version="1.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.7" />
<PackageReference Include="MiniTwitch.Helix" Version="2.0.0" />
<PackageReference Include="MiniTwitch.PubSub" Version="3.0.0" />
<PackageReference Include="Npgsql" Version="10.0.2" />
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Enrichers.CallerInfo" Version="1.0.6" />
<PackageReference Include="Serilog.Enrichers.ClassName" Version="0.3.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageReference Include="Sqids" Version="3.2.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MiniTwitch.Irc" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Config.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>