27 lines
738 B
XML
27 lines
738 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="byond.proto" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.9.1" />
|
|
<PackageReference Include="Grpc" Version="1.22.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="1.22.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="generic.proto" />
|
|
<Protobuf Include="byond.proto" />
|
|
<Protobuf Include="instance.proto" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|