-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathEasyProtobuf.csproj
47 lines (41 loc) · 1.79 KB
/
EasyProtobuf.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
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<MainEntryPoint>YYHEggEgg.EasyProtobuf.EasyProtobufProgram</MainEntryPoint>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Protobuf-*/**" />
<EmbeddedResource Remove="Protobuf-**/**" />
<None Remove="Protobuf-*/**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Protobuf-*/**" />
<EmbeddedResource Remove="Protobuf-**/**" />
<None Remove="Protobuf-*/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="EggEgg.CSharp-Logger" Version="4.0.2" />
<PackageReference Include="EggEgg.XC.RSAUtil" Version="136.0.0" />
<PackageReference Include="Google.Protobuf" Version="3.25.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NJsonSchema" Version="10.9.0" />
<PackageReference Include="Portable.BouncyCastle" Version="1.9.0" />
<PackageReference Include="TextCopy" Version="6.2.1" />
<PackageReference Include="Grpc.Tools" Version="2.50.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Protobuf Include="Protobuf-$(protobuf_version)/*.proto"
ProtoRoot="Protobuf-$(protobuf_version)"
GrpcServices="None" />
<Protobuf Include="Protobuf-$(protobuf_version)/Protos/*.proto"
ProtoRoot="Protobuf-$(protobuf_version)/Protos"
GrpcServices="None" />
</ItemGroup>
</Project>