This repository has been archived on 2024-12-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
elliebot/src/Ellie.Marmalade/Ellie.Marmalade.csproj

22 lines
581 B
XML
Raw Normal View History

2024-03-23 18:42:46 +13:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-05-12 23:43:23 +12:00
<TargetFramework>net8.0</TargetFramework>
2024-03-23 18:42:46 +13:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Authors>The EllieBot Devs</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net.Core" Version="3.15.3" />
2024-05-12 23:43:23 +12:00
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="YamlDotNet" Version="15.1.4" />
2024-03-23 18:42:46 +13:00
</ItemGroup>
<PropertyGroup Condition=" '$(Version)' == '' ">
2024-05-12 23:43:23 +12:00
<Version>9.0.0</Version>
2024-03-23 18:42:46 +13:00
</PropertyGroup>
</Project>