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>
|
2025-02-09 22:30:00 +01:00
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2019-06-02 17:19:28 +02:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
2018-10-03 21:48:18 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2025-02-09 22:30:00 +01:00
|
|
|
|
<PackageReference Include="DSharpPlus" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="DSharpPlus.Interactivity" Version="4.5.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.1" />
|
2023-07-12 05:06:18 +02:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2018-10-03 21:48:18 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-03-16 12:22:52 +01:00
|
|
|
|
<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 22:24:59 +02:00
|
|
|
|
<None Update="answers.txt">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="questions.txt">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="quotes.txt">
|
2022-07-30 18:22:49 +02:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2018-10-03 21:48:18 +02:00
|
|
|
|
<None Update="settings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|