mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
22 lines
696 B
XML
22 lines
696 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<EnablePreviewFeatures>true</EnablePreviewFeatures>
|
|
<RootNamespace>Nadeko.Snake</RootNamespace>
|
|
|
|
<Authors>The NadekoBot Team</Authors>
|
|
<Version>1.0.2</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net.Core" Version="3.6.1" />
|
|
<PackageReference Include="Serilog" Version="2.11.0" />
|
|
<PackageReference Include="YamlDotNet" Version="11.2.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|