HaoYueNet/Simple/SimpleClient/SimpleClient.csproj

30 lines
773 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-12-10 23:38:40 +08:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
2021-12-10 23:38:40 +08:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Data\**" />
<Compile Remove="Manager\**" />
<EmbeddedResource Remove="Data\**" />
<EmbeddedResource Remove="Manager\**" />
<None Remove="Data\**" />
<None Remove="Manager\**" />
2021-12-10 23:38:40 +08:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\NetLib\HaoYueNet.ClientNetwork\HaoYueNet.ClientNetwork.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Google.Protobuf">
<HintPath>..\..\NetLib\Google.Protobuf.dll</HintPath>
</Reference>
</ItemGroup>
2021-12-10 23:38:40 +08:00
</Project>