22 lines
607 B
XML
22 lines
607 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Google.Protobuf">
|
|
<HintPath>..\Lib\Google.Protobuf.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="HaoYueNet.ClientNetwork">
|
|
<HintPath>..\Lib\HaoYueNet.ClientNetwork.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="HaoYueNet.ServerNetwork">
|
|
<HintPath>..\Lib\HaoYueNet.ServerNetwork.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|