1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <OutputPath>$(SolutionDir)Binary\Tools\Mini8SlaveSim</OutputPath>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Prism.DryIoc" />
- <PackageReference Include="CommunityToolkit.Mvvm" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
- <ProjectReference Include="..\..\CommunicationProtocols\ModbusSimulationProtocol\ModbusSimulationProtocol.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Configuration\" />
- </ItemGroup>
- </Project>
|