-
Notifications
You must be signed in to change notification settings - Fork 2
/
RRBot.csproj
executable file
·23 lines (23 loc) · 1.23 KB
/
RRBot.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Lavalink4NET.Artwork" Version="4.0.18" />
<PackageReference Include="Lavalink4NET.InactivityTracking" Version="4.0.18" />
<PackageReference Include="Lavalink4NET.Lyrics" Version="4.0.18" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="4.10.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="MongoDB.Driver" Version="2.27.0" />
<PackageReference Include="Lavalink4NET.Discord.NET" Version="4.0.18" />
<PackageReference Include="Fergun.Interactive" Version="1.7.7" />
<PackageReference Include="Discord.Net" Version="3.15.2" />
</ItemGroup>
<Target Name="CopyCustomContent" AfterTargets="AfterBuild">
<Copy SourceFiles="credentials.json" DestinationFolder="$(OutDir)" Condition="!Exists($([System.IO.Path]::Combine('$(OutDir)', 'credentials.json')))" />
</Target>
</Project>