PLCIOPointTool.csproj 783 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\PLCIOPointTool</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Prism.DryIoc" />
  15. <PackageReference Include="CommunityToolkit.Mvvm" />
  16. <PackageReference Include="Beckhoff.TwinCAT.Ads" />
  17. </ItemGroup>
  18. </Project>