赖素文
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>..\..\sys_DLL</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Hh.Mes.POJO\Hh.Mes.POJO.csproj" />
<ProjectReference Include="..\Hh.Mes.HSL\Hh.Mes.HSL.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Interop.OPCAutomation">
<HintPath>DLL\Interop.OPCAutomation.dll</HintPath>
</Reference>
</ItemGroup>
</Project>
|