-
Notifications
You must be signed in to change notification settings - Fork 0
/
LucoaBot.csproj
64 lines (58 loc) · 3.37 KB
/
LucoaBot.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Migrations\20190701190853_InitialCreate.cs" />
<Compile Remove="Migrations\20190701190853_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190701191932_InitialCreate.cs" />
<Compile Remove="Migrations\20190701191932_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190701192254_InitialCreate.cs" />
<Compile Remove="Migrations\20190701192254_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190701193219_InitialCreate.cs" />
<Compile Remove="Migrations\20190701193219_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190701220632_InitialCreate.cs" />
<Compile Remove="Migrations\20190701220632_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190702194141_InitialCreate.cs" />
<Compile Remove="Migrations\20190702194141_InitialCreate.Designer.cs" />
<Compile Remove="Migrations\20190725213115_Initial.cs" />
<Compile Remove="Migrations\20190725213115_Initial.Designer.cs" />
<Compile Remove="Migrations\20190810010150_Initial.cs" />
<Compile Remove="Migrations\20190810010150_Initial.Designer.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DiceRoller" Version="4.2.0" />
<PackageReference Include="dotenv.net" Version="3.1.3" />
<PackageReference Include="DSharpPlus" Version="4.4.6" />
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.4.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="8.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
<PackageReference Include="ZXing.Net" Version="0.16.9" />
<PackageReference Include="ZXing.Net.Bindings.ImageSharp.V2" Version="0.16.16" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)' == 'Debug' ">
<None Update="appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>