You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
587 B
19 lines
587 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyTitle>Greeter</AssemblyTitle>
|
|
<TargetFrameworks>netcoreapp2.1</TargetFrameworks>
|
|
<DebugType>portable</DebugType>
|
|
<AssemblyName>Greeter</AssemblyName>
|
|
<PackageId>Greeter</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.6.1" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.6.1" />
|
|
<PackageReference Include="Grpc" Version="1.14.1" />
|
|
<PackageReference Include="Grpc.Tools" Version="1.14.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|