Browse Source
Merge pull request #82 from abpframework/gterdem/grpc_warning_fix
eShopOnAbp: Fix Grpc base class warnings
pull/83/head
Enis Necipoglu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
11 additions and
14 deletions
-
services/basket/src/EShopOnAbp.BasketService/EShopOnAbp.BasketService.csproj
-
services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/EShopOnAbp.CatalogService.Application.Contracts.csproj
-
services/catalog/src/EShopOnAbp.CatalogService.Application/EShopOnAbp.CatalogService.Application.csproj
-
services/catalog/src/EShopOnAbp.CatalogService.Application/Protos/product.proto
|
|
|
@ -33,7 +33,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<Protobuf Include="..\..\..\catalog\src\EShopOnAbp.CatalogService.Application.Contracts\Protos\product.proto" GrpcServices="Client" /> |
|
|
|
<Protobuf Include="..\..\..\catalog\src\EShopOnAbp.CatalogService.Application\Protos\product.proto" GrpcServices="Client" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
|
|
@ -16,16 +16,4 @@ |
|
|
|
<PackageReference Include="Volo.Abp.Authorization" Version="5.1.2" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.19.3" /> |
|
|
|
<PackageReference Include="Grpc.Core" Version="2.42.0" /> |
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.42.0" PrivateAssets="All" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<Protobuf Include="Protos\product.proto" GrpcServices="Server" Generator="MSBuild:Compile" /> |
|
|
|
<Content Include="@(Protobuf)" /> |
|
|
|
<None Remove="@(Protobuf)" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
</Project> |
|
|
|
|
|
|
|
@ -7,13 +7,22 @@ |
|
|
|
<RootNamespace>EShopOnAbp.CatalogService</RootNamespace> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="Google.Protobuf" Version="3.19.3" /> |
|
|
|
<PackageReference Include="Grpc.Core" Version="2.42.0" /> |
|
|
|
<PackageReference Include="Grpc.Tools" Version="2.42.0" PrivateAssets="All" /> |
|
|
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="5.1.2" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\EShopOnAbp.CatalogService.Domain\EShopOnAbp.CatalogService.Domain.csproj" /> |
|
|
|
<ProjectReference Include="..\EShopOnAbp.CatalogService.Application.Contracts\EShopOnAbp.CatalogService.Application.Contracts.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="Volo.Abp.Ddd.Application" Version="5.1.2" /> |
|
|
|
<Protobuf Include="Protos\product.proto" GrpcServices="Server" Generator="MSBuild:Compile" /> |
|
|
|
<Content Include="@(Protobuf)" /> |
|
|
|
<None Remove="@(Protobuf)" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
</Project> |
|
|
|
|