|
12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWPF>true</UseWPF>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="BPA.Helper" Version="1.0.54" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\BeDesignerSCADA\BeDesignerSCADA.csproj" />
- <ProjectReference Include="..\BPASmart.Model\BPASmart.Model.csproj" />
- <ProjectReference Include="..\BPASmartClient.MessageCommunication\BPASmartClient.MessageCommunication.csproj" />
- <!--<ProjectReference Include="..\BPASmartClient.MessageName\BPASmartClient.MessageName.csproj" />-->
- <ProjectReference Include="..\BPASmartClient.SCADAControl\BPASmartClient.SCADAControl.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Reference Include="Antlr3.Runtime">
- <HintPath>..\BPASmartClient.SCADAControl\DLL\Antlr3.Runtime.dll</HintPath>
- </Reference>
- <Reference Include="BPASmartClient.Compiler">
- <HintPath>..\BPASmartClient.SCADAControl\DLL\BPASmartClient.Compiler.dll</HintPath>
- </Reference>
- <Reference Include="Unvell.ReoScript">
- <HintPath>..\BPASmartClient.SCADAControl\DLL\Unvell.ReoScript.dll</HintPath>
- </Reference>
- </ItemGroup>
-
- </Project>
|