forked from DCS-gRPC/csharp-bindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RurouniJones.Dcs.Grpc.csproj
46 lines (41 loc) · 1.57 KB
/
RurouniJones.Dcs.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Company>Jeffrey Jones</Company>
<Description>C# language bindings for the DCS-gRPC project</Description>
<Version>0.7.1</Version>
<Copyright>Copyright (c) Jeffrey Jones 2022</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/DCS-gRPC/csharp-bindings</RepositoryUrl>
<PackageProjectUrl>https://github.com/DCS-gRPC</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<AssemblyName>RurouniJones.Dcs.Grpc</AssemblyName>
<RootNamespace>RurouniJones.Dcs.Grpc</RootNamespace>
<RepositoryType>git</RepositoryType>
<Authors>Jeffrey Jones</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Protobuf" Version="3.24.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.57.0" />
<PackageReference Include="Grpc.Tools" Version="2.58.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Protos\" />
<None Remove="Protos\*.proto" />
<Protobuf Include="Protos\dcs\**\*.proto" ProtoRoot="Protos" GrpcServices="Client" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>