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
parent
commit
4b60458162
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      services/basket/src/EShopOnAbp.BasketService/EShopOnAbp.BasketService.csproj
  2. 12
      services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/EShopOnAbp.CatalogService.Application.Contracts.csproj
  3. 11
      services/catalog/src/EShopOnAbp.CatalogService.Application/EShopOnAbp.CatalogService.Application.csproj
  4. 0
      services/catalog/src/EShopOnAbp.CatalogService.Application/Protos/product.proto

2
services/basket/src/EShopOnAbp.BasketService/EShopOnAbp.BasketService.csproj

@ -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>

12
services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/EShopOnAbp.CatalogService.Application.Contracts.csproj

@ -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>

11
services/catalog/src/EShopOnAbp.CatalogService.Application/EShopOnAbp.CatalogService.Application.csproj

@ -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>

0
services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/Protos/product.proto → services/catalog/src/EShopOnAbp.CatalogService.Application/Protos/product.proto

Loading…
Cancel
Save