-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDisCatSharp.Support.csproj
68 lines (57 loc) · 2.52 KB
/
DisCatSharp.Support.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<StartupObject>DisCatSharp.Support.Program</StartupObject>
<ApplicationIcon>facivon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702;NU1701;DV2001</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702;DV2001</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove=".editorconfig" />
<None Remove=".gitignore" />
<None Remove="CODE_OF_CONDUCT.md" />
<None Remove="CONTRIBUTING.md" />
<None Remove="LICENSE" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AITSYS.MySql.Data" Version="8.1.0-mariadb" />
<PackageReference Include="DisCatSharp" Version="10.6.4" />
<PackageReference Include="DisCatSharp.Analyzer.Roselyn" Version="6.2.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="DisCatSharp.ApplicationCommands" Version="10.6.4" />
<PackageReference Include="DisCatSharp.Common" Version="10.6.4" />
<PackageReference Include="DisCatSharp.CommandsNext" Version="10.6.4" />
<PackageReference Include="DisCatSharp.Interactivity" Version="10.6.4" />
<PackageReference Include="DisCatSharp.Phabricator" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="4.2.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="SSH.NET" Version="2024.2.0" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\pkmor\source\GitHub\DisCatSharp.Support\.editorconfig" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\pkmor\source\GitHub\DisCatSharp.Support\.editorconfig" />
</ItemGroup>
<ItemGroup>
<EditorConfigFiles Remove="C:\Users\pkmor\source\GitHub\DisCatSharp.Support\.editorconfig" />
</ItemGroup>
<ItemGroup>
<Folder Include="Enums\" />
</ItemGroup>
<ItemGroup>
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>