-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathink-runtime-grpc.csproj
28 lines (26 loc) · 1.07 KB
/
ink-runtime-grpc.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>ink_runtime_grpc</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Grpc" Version="2.43.0" />
<PackageReference Include="Grpc.Core" Version="2.43.0" />
<PackageReference Include="Grpc.Tools" Version="2.43.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Google.Protobuf" Version="3.19.3" />
<PackageReference Include="Ink.Engine.Runtime-Unofficial" Version="1.0.0-nightly-21091501" />
<PackageReference Include="Google.Api.CommonProtos" Version="2.5.0" />
<PackageReference Include="Google.Apis" Version="1.55.0" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="Story.proto" />
</ItemGroup>
<ItemGroup>
<Folder Include="google\" />
<Folder Include="google\api\" />
</ItemGroup>
</Project>