PluralKit/PluralKit.Bot/PluralKit.Bot.csproj

30 lines
958 B
XML
Raw Normal View History

2019-05-08 00:06:27 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2024-12-23 00:51:58 +00:00
<TargetFramework>net8.0</TargetFramework>
<Nullable>annotations</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2019-05-08 00:06:27 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
2019-05-08 00:06:27 +02:00
<ItemGroup>
<ProjectReference Include="..\Myriad\Myriad.csproj" />
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
2019-05-08 00:06:27 +02:00
</ItemGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2019-05-08 00:06:27 +02:00
<ItemGroup>
2024-12-23 00:51:58 +00:00
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
<PackageReference Include="Sentry" Version="4.13.0" />
<PackageReference Include="Watson.Lite" Version="6.3.12" />
2019-05-08 00:06:27 +02:00
</ItemGroup>
</Project>