Mini8SlaveSim.csproj 961 B

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\Mini8SlaveSim</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Prism.DryIoc" />
  14. <PackageReference Include="CommunityToolkit.Mvvm" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
  18. <ProjectReference Include="..\..\CommunicationProtocols\ModbusSimulationProtocol\ModbusSimulationProtocol.csproj" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Folder Include="Configuration\" />
  22. </ItemGroup>
  23. </Project>