2023-03-25 01:39:54 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-03-26 12:26:12 +00:00
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
2023-03-25 01:39:54 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-03-26 12:26:12 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.22.1"/>
|
|
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.51.0"/>
|
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.52.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
2023-03-25 01:39:54 +00:00
|
|
|
|
2023-03-26 12:26:12 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Pal.Common\Pal.Common.csproj"/>
|
|
|
|
</ItemGroup>
|
2023-03-25 01:39:54 +00:00
|
|
|
|
2023-03-26 12:26:12 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Protobuf Include="..\Pal.Common\Protos\account.proto" Link="Protos\account.proto" GrpcServices="Client" Access="Internal"/>
|
|
|
|
<Protobuf Include="..\Pal.Common\Protos\palace.proto" Link="Protos\palace.proto" GrpcServices="Client" Access="Internal"/>
|
|
|
|
</ItemGroup>
|
2023-03-25 01:39:54 +00:00
|
|
|
</Project>
|