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