Kede.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net5.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  10. <PackageReference Include="OpcUaHelper" Version="2.1.3" />
  11. <PackageReference Include="WinSCP" Version="6.3.4" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Reference Include="HslCommunication">
  15. <HintPath>dll\HslCommunication.dll</HintPath>
  16. </Reference>
  17. <Reference Include="Opc.Ua.Client">
  18. <HintPath>dll\Opc.Ua.Client.dll</HintPath>
  19. </Reference>
  20. <Reference Include="Opc.Ua.Core">
  21. <HintPath>dll\Opc.Ua.Core.dll</HintPath>
  22. </Reference>
  23. <Reference Include="Siemens.OpcUA">
  24. <HintPath>dll\Siemens.OpcUA.dll</HintPath>
  25. </Reference>
  26. <Reference Include="SinumerikOpcUaAPI">
  27. <HintPath>dll\SinumerikOpcUaAPI.dll</HintPath>
  28. </Reference>
  29. <Reference Include="UAClientHelperAPI">
  30. <HintPath>dll\UAClientHelperAPI.dll</HintPath>
  31. </Reference>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Update="Form_Main.cs">
  35. <SubType>Form</SubType>
  36. </Compile>
  37. </ItemGroup>
  38. </Project>