-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIrisBot.csproj
54 lines (48 loc) · 2.27 KB
/
IrisBot.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyVersion>1.0.1</AssemblyVersion>
<NeutralLanguage>ko-KR</NeutralLanguage>
<FileVersion>1.0.1</FileVersion>
<Version>$(VersionPrefix)</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="NOTICE.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="3.13.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.57" />
<PackageReference Include="Lavalink4NET" Version="4.0.9" />
<PackageReference Include="Lavalink4NET.Discord.NET" Version="4.0.9" />
<PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.9" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" 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.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Data.SQLite" Version="1.0.118" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Resources\WRRR.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Translation\English.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Translation\Korean.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties /></VisualStudio></ProjectExtensions>
</Project>