PluralKit/PluralKit.Bot/PluralKit.Bot.csproj

37 lines
1.3 KiB
XML
Raw Normal View History

2019-05-07 22:06:27 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Nullable>annotations</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
2019-05-07 22:06:27 +00:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
2019-05-07 22:06:27 +00:00
<ItemGroup>
<ProjectReference Include="..\Myriad\Myriad.csproj"/>
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj"/>
2019-05-07 22:06:27 +00:00
</ItemGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
2019-05-07 22:06:27 +00:00
<ItemGroup>
2022-01-22 08:52:52 +00:00
<PackageReference Include="Google.Protobuf" Version="3.13.0"/>
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.32.0" />
<PackageReference Include="Grpc.Tools" Version="2.37.0" PrivateAssets="All"/>
<PackageReference Include="Humanizer.Core" Version="2.8.26"/>
<PackageReference Include="Sentry" Version="3.11.1"/>
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2"/>
2019-05-07 22:06:27 +00:00
</ItemGroup>
2022-01-22 08:52:52 +00:00
<ItemGroup>
<Protobuf Include="../proto/state.proto" GrpcServices="Client" Link="Protos/state.proto"/>
2022-01-22 08:52:52 +00:00
</ItemGroup>
2019-05-07 22:06:27 +00:00
</Project>