25 lines
956 B
XML
25 lines
956 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\NucuCarSensors.proto">
|
|
<GrpcServices>Both</GrpcServices>
|
|
<Access>Public</Access>
|
|
<ProtoCompile>True</ProtoCompile>
|
|
<CompileOutputs>True</CompileOutputs>
|
|
<OutputDir>obj/Debug/netcoreapp3.0/</OutputDir>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Protobuf>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FirebaseRestTranslator" Version="0.1.1" />
|
|
<PackageReference Include="Google.Protobuf" Version="3.10.1" />
|
|
<PackageReference Include="Grpc" Version="2.25.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.25.0" />
|
|
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.29.0-preview-002" />
|
|
</ItemGroup>
|
|
</Project>
|