-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVortex.Bot.csproj
More file actions
47 lines (39 loc) · 1.59 KB
/
Vortex.Bot.csproj
File metadata and controls
47 lines (39 loc) · 1.59 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Content Include="Resources\**" Exclude="**\Json\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>false</Pack>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="Resources\appsettings.jsonc" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Json\appsettings.jsonc" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Json\appsettings.jsonc" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.8" />
<PackageReference Include="Net.Codecrete.QrCodeGenerator" Version="2.1.0" />
<PackageReference Include="linq2db" Version="6.2.1" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.7" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.7" />
<PackageReference Include="SixLabors.Fonts" Version="2.1.3" />
<PackageReference Include="MailKit" Version="4.16.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LagrangeV2\Lagrange.Core\Lagrange.Core.csproj" />
<ProjectReference Include="..\Vortex.Protocol\Vortex.Protocol.csproj" />
</ItemGroup>
</Project>