You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TargetFrameworks>net6.0;net6.0-windows</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DocumentationFile>bin\Debug\Service.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DocumentationFile>bin\Release\Service.xml</DocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DotNetty.Buffers" Version="0.7.5" />
|
|
<PackageReference Include="DotNetty.Codecs" Version="0.7.5" />
|
|
<PackageReference Include="DotNetty.Codecs.Mqtt" Version="0.7.5" />
|
|
<PackageReference Include="DotNetty.Common" Version="0.7.5" />
|
|
<PackageReference Include="DotNetty.Handlers" Version="0.7.5" />
|
|
<PackageReference Include="DotNetty.Transport" Version="0.7.5" />
|
|
<PackageReference Include="log4net" Version="2.0.15" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.115" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HybirdFrameworkCore\HybirdFrameworkCore.csproj" />
|
|
<ProjectReference Include="..\HybirdFrameworkDriver\HybirdFrameworkDriver.csproj" />
|
|
<ProjectReference Include="..\Entity\Entity.csproj" />
|
|
<ProjectReference Include="..\Repository\Repository.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Mgr\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|