25 lines
1005 B
XML
25 lines
1005 B
XML
<Project Sdk="Godot.NET.Sdk/4.4.0">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
|
<Nullable>enable</Nullable>
|
|
<!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> -->
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Remove="Test\**\*" />
|
|
<Compile Remove="android\**\*" />
|
|
<Compile Remove="Protos\**\*" />
|
|
<!-- <Protobuf Include="Protos\chess.proto" GrpcServices="Client" /> -->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.30.2" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.70.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.71.0">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="KeraLua" Version="1.4.5" />
|
|
<PackageReference Include="NLua" Version="1.7.5" />
|
|
</ItemGroup>
|
|
</Project>
|