Initial commit.

This commit is contained in:
Karolis2011
2019-08-17 21:55:05 +03:00
parent eaedeb14ae
commit 8ca5a24065
6 changed files with 439 additions and 2 deletions

26
ASS.API.csproj Normal file
View File

@@ -0,0 +1,26 @@
<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>