blob: 2ce99139b12beb9eaaa59446d3ed098a439d4142 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Library.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Expecto" Version="5.1.2" />
<PackageReference Include="Grpc" Version="1.9.0" />
<PackageReference Include="Grpc.Core" Version="1.9.0" />
<PackageReference Include="Google.Protobuf" Version="3.5.1" />
<PackageReference Include="Hopac" Version="0.3.23" />
<PackageReference Include="Hopac.IO" Version="1.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HelloGrpc\HelloGrpc.csproj" />
</ItemGroup>
</Project>
|