57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Autofac" Version="8.0.0" />
|
|||
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
|
|||
|
|
<PackageReference Include="Fleck" Version="1.2.0" />
|
|||
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="8.0.2" />
|
|||
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
|
<PackageReference Include="SqlSugarCore" Version="5.1.4.124" />
|
|||
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Update="Properties\launchSettings.json">
|
|||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
|
</None>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Tools\ApiTool\ApiTool.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\CirculateTool\CirculateTool.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\DataCheck\DataCheck.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\EncryptTool\EncryptTool.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\HkCamera\HkCamera.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\LedSimple\LedSimple.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\PlcTool\PlcTool.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\SocketTool\SocketTool.csproj" />
|
|||
|
|
<ProjectReference Include="..\Tools\LogTool\LogTool.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="ApiServe\Controllers\Dto\CommonEntity\" />
|
|||
|
|
<Folder Include="ApiServe\Service\TestService\" />
|
|||
|
|
<Folder Include="Business\CirculationTask\Container\" />
|
|||
|
|
<Folder Include="Business\CirculationTask\Convey\" />
|
|||
|
|
<Folder Include="Business\CirculationTask\Shuttle\" />
|
|||
|
|
<Folder Include="Business\Stacker\" />
|
|||
|
|
<Folder Include="Business\StackerConvey\" />
|
|||
|
|
<Folder Include="Business\Container\" />
|
|||
|
|
<Folder Include="Language\Entity\" />
|
|||
|
|
<Folder Include="Language\zh-CN\" />
|
|||
|
|
<Folder Include="Language\en-US\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|