Remove unused dependency in NucuCar.TestClient

This commit is contained in:
Denis-Cosmin Nutiu 2019-11-10 17:57:04 +02:00
parent c58b1e70ae
commit 2f43c2942c
2 changed files with 1 additions and 1 deletions

View file

@ -6,7 +6,6 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Grpc.Core" Version="2.25.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.25.0" /> <PackageReference Include="Grpc.Net.Client" Version="2.25.0" />
</ItemGroup> </ItemGroup>

View file

@ -27,6 +27,7 @@ namespace NucuCar.TestClient
httpClientHandler.ServerCertificateCustomValidationCallback = httpClientHandler.ServerCertificateCustomValidationCallback =
HttpClientHandler.DangerousAcceptAnyServerCertificateValidator; HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;
_httpClient = new HttpClient(httpClientHandler); _httpClient = new HttpClient(httpClientHandler);
await EnvironmentSensorGrpcServiceTest(); await EnvironmentSensorGrpcServiceTest();
} }