MinicsConsole.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <ApplicationManifest>app.manifest</ApplicationManifest>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Mapster" />
  16. <PackageReference Include="Microsoft.AspNetCore.SignalR.Common" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\CommunicationProtocols\FinsTcp\FinsTcp.csproj" />
  23. <ProjectReference Include="..\Communicators\Mini8Communicator\IMini8Communicator\Mini8Communicator.csproj" />
  24. <ProjectReference Include="..\Communicators\Mini8Communicator\Mini8CommunicatorModbus\Mini8CommunicatorModbus.csproj" />
  25. <ProjectReference Include="..\Communicators\Mini8Communicator\Mini8CommunicatorSim\Mini8CommunicatorSim.csproj" />
  26. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorBase\RTCommunicatorBase.csproj" />
  27. <ProjectReference Include="..\Communicators\RTCommunicator\RTCommunicatorTLV\RTCommunicatorTLV.csproj" />
  28. <ProjectReference Include="..\Configs\CofigOperator\ConfigOperator.csproj" />
  29. <ProjectReference Include="..\ConsoleData\RealtimeData\RealtimeData.csproj" />
  30. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  31. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  32. <ProjectReference Include="..\Log\Logger\Logger.csproj" />
  33. <ProjectReference Include="..\Log\Log\Log.csproj" />
  34. <ProjectReference Include="..\ModelData\DBData\DBData.csproj" />
  35. <ProjectReference Include="..\ModelData\GeneralData\GeneralData.csproj" />
  36. <ProjectReference Include="..\ModelData\HardwareData\HardwareData.csproj" />
  37. <ProjectReference Include="..\ModelData\TemperatureConfigFile\TemperatureConfigFile.csproj" />
  38. <ProjectReference Include="..\TLVProtocal\TLV_Protocol.csproj" />
  39. <ProjectReference Include="..\Universal\Universal.csproj" />
  40. </ItemGroup>
  41. </Project>