MinicsConsole.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Console</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Mapster" />
  15. <PackageReference Include="Microsoft.AspNetCore.SignalR.Common" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\CommunicationProtocols\FinsTcp\FinsTcp.csproj" />
  22. <ProjectReference Include="..\Communicators\Mini8Communicator\IMini8Communicator\Mini8Communicator.csproj" />
  23. <ProjectReference Include="..\Communicators\Mini8Communicator\Mini8CommunicatorModbus\Mini8CommunicatorModbus.csproj" />
  24. <ProjectReference Include="..\Communicators\Mini8Communicator\Mini8CommunicatorSim\Mini8CommunicatorSim.csproj" />
  25. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorBase\RTCommunicatorBase.csproj" />
  26. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorTLV\RTCommunicatorTLV.csproj" />
  27. <ProjectReference Include="..\Configs\CofigOperator\ConfigOperator.csproj" />
  28. <ProjectReference Include="..\ConsoleData\RealtimeData\RealtimeData.csproj" />
  29. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  30. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  31. <ProjectReference Include="..\Log\Logger\Logger.csproj" />
  32. <ProjectReference Include="..\Log\Log\Log.csproj" />
  33. <ProjectReference Include="..\ModelData\DBData\DBData.csproj" />
  34. <ProjectReference Include="..\ModelData\GeneralData\GeneralData.csproj" />
  35. <ProjectReference Include="..\ModelData\HardwareData\HardwareData.csproj" />
  36. <ProjectReference Include="..\ModelData\TemperatureConfigFile\TemperatureConfigFile.csproj" />
  37. <ProjectReference Include="..\TLVProtocal\TLV_Protocol.csproj" />
  38. <ProjectReference Include="..\Universal\Universal.csproj" />
  39. </ItemGroup>
  40. </Project>