2019-05-08 00:06:27 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-11-26 21:10:56 -05:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-05-07 10:48:19 +02:00
|
|
|
|
<Nullable>annotations</Nullable>
|
2021-11-26 21:10:56 -05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2019-05-08 00:06:27 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-08-25 20:36:38 +02:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2021-11-26 21:10:56 -05:00
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
2020-08-25 20:36:38 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-05-08 00:06:27 +02:00
|
|
|
|
<ItemGroup>
|
2021-11-26 21:10:56 -05:00
|
|
|
|
<ProjectReference Include="..\Myriad\Myriad.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj"/>
|
2019-05-08 00:06:27 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-08 09:04:20 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-05-08 00:06:27 +02:00
|
|
|
|
<ItemGroup>
|
2022-01-22 03:52:52 -05: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"/>
|
2021-11-26 21:10:56 -05:00
|
|
|
|
<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-08 00:06:27 +02:00
|
|
|
|
</ItemGroup>
|
2022-01-22 03:52:52 -05:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-07 11:07:45 -05:00
|
|
|
|
<Protobuf Include="../proto/state.proto" GrpcServices="Client" Link="Protos/state.proto"/>
|
2022-01-22 03:52:52 -05:00
|
|
|
|
</ItemGroup>
|
2019-05-08 00:06:27 +02:00
|
|
|
|
</Project>
|