12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net5.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
- <PackageReference Include="OpcUaHelper" Version="2.1.3" />
- <PackageReference Include="WinSCP" Version="6.3.4" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="HslCommunication">
- <HintPath>dll\HslCommunication.dll</HintPath>
- </Reference>
- <Reference Include="Opc.Ua.Client">
- <HintPath>dll\Opc.Ua.Client.dll</HintPath>
- </Reference>
- <Reference Include="Opc.Ua.Core">
- <HintPath>dll\Opc.Ua.Core.dll</HintPath>
- </Reference>
- <Reference Include="Siemens.OpcUA">
- <HintPath>dll\Siemens.OpcUA.dll</HintPath>
- </Reference>
- <Reference Include="SinumerikOpcUaAPI">
- <HintPath>dll\SinumerikOpcUaAPI.dll</HintPath>
- </Reference>
- <Reference Include="UAClientHelperAPI">
- <HintPath>dll\UAClientHelperAPI.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Form_Main.cs">
- <SubType>Form</SubType>
- </Compile>
- </ItemGroup>
- </Project>
|