20 lines
520 B
XML
20 lines
520 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<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.ServerNetwork">
|
|
<HintPath>..\..\Lib\HaoYueNet.ServerNetwork.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|