HaoYueTunnel/ClientCore/ClientCore.csproj

23 lines
580 B
XML
Raw Normal View History

2023-05-25 18:30:22 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2023-05-23 17:57:24 +08:00
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Protobuf\Protobuf.csproj" />
</ItemGroup>
<ItemGroup>
2023-05-24 18:31:11 +08:00
<Reference Include="Google.Protobuf">
<HintPath>..\NetLib\Google.Protobuf.dll</HintPath>
</Reference>
2023-05-23 17:57:24 +08:00
<Reference Include="HaoYueNet.ClientNetwork">
<HintPath>..\NetLib\HaoYueNet.ClientNetwork.dll</HintPath>
</Reference>
</ItemGroup>
</Project>