Files
LaDOSE/LaDOSE.Src/LaDOSE.DiscordBot/LaDOSE.DiscordBot.csproj

37 lines
1.1 KiB
XML
Raw Normal View History

2019-03-18 00:39:33 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2018-10-03 21:48:18 +02:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2020-09-13 22:50:52 +02:00
<TargetFramework>netcoreapp3.1</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
2018-10-03 21:48:18 +02:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DSharpPlus" Version="3.2.3" />
2018-10-04 00:29:25 +02:00
<PackageReference Include="DSharpPlus.CommandsNext" Version="3.2.3" />
2018-10-03 23:32:44 +02:00
<PackageReference Include="DSharpPlus.Interactivity" Version="3.2.3" />
2020-09-13 22:50:52 +02:00
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.8" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.8" />
2018-10-03 21:48:18 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LaDOSE.REST\LaDOSE.REST.csproj" />
</ItemGroup>
2018-10-04 01:32:33 +02:00
<ItemGroup>
<Reference Include="ChallongeCSharpDriver">
2019-03-18 00:39:33 +01:00
<HintPath>..\Libraries\ChallongeCSharpDriver.dll</HintPath>
2018-10-04 01:32:33 +02:00
</Reference>
</ItemGroup>
2018-10-03 21:48:18 +02:00
<ItemGroup>
2022-07-30 18:22:49 +02:00
<None Update="Quotes.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2018-10-03 21:48:18 +02:00
<None Update="settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>