This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/shtikbot-discord.csproj

33 lines
1.2 KiB
XML
Raw Normal View History

2021-06-11 23:12:10 -04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-02-22 16:46:44 -05:00
<TargetFramework>net7.0</TargetFramework>
2021-06-11 23:12:10 -04:00
<RootNamespace>silverworker_discord</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="discord.net" Version="2.4.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
2021-11-30 21:39:43 -05:00
<PackageReference Include="QRCoder" Version="1.4.2" />
2021-08-29 00:21:09 -04:00
<PackageReference Include="youtubedlsharp" Version="0.3.1" />
2021-06-11 23:12:10 -04:00
</ItemGroup>
<ItemGroup>
<None Update="assets/jokes.txt">
2022-01-15 20:35:43 -05:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="assets/coding and algorithms.png">
2022-01-16 20:51:22 -05:00
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="assets/ekgblip.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="appsettings.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
2021-06-11 23:12:10 -04:00
</ItemGroup>
</Project>