forked from EllieBotDevs/elliebot
upped version to 5.1.5 removed nuget.config as we are no longer using our fork of discord.net Fixed some build warnings
21 lines
581 B
XML
21 lines
581 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<Authors>The EllieBot Devs</Authors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net.Core" Version="3.15.3" />
|
|
<PackageReference Include="Serilog" Version="3.1.1" />
|
|
<PackageReference Include="YamlDotNet" Version="15.1.4" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Version)' == '' ">
|
|
<Version>9.0.0</Version>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|