-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGodot ANT gRPC.csproj
More file actions
20 lines (20 loc) · 889 Bytes
/
Copy pathGodot ANT gRPC.csproj
File metadata and controls
20 lines (20 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Godot.NET.Sdk/4.3.0">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net7.0</TargetFramework>
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'ios' ">net8.0</TargetFramework>
<EnableDynamicLoading>true</EnableDynamicLoading>
<RootNamespace>GodotANTgRPC</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Godot.DependencyInjection" Version="0.3.0" />
<PackageReference Include="Google.Protobuf" Version="3.29.3" />
<PackageReference Include="Grpc.Net.Client" Version="2.67.0" />
<PackageReference Include="SmallEarthTech.AntPlus.Extensions.Hosting" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="AntGrpcShared">
<HintPath>AntGrpcShared.dll</HintPath>
</Reference>
</ItemGroup>
</Project>