30 lines
951 B
XML
30 lines
951 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Opc.Ua.Client</AssemblyName>
|
|
<TargetFrameworks>$(LibTargetFrameworks)</TargetFrameworks>
|
|
<LangVersion>6</LangVersion>
|
|
<PackageId>OPCFoundation.NetStandard.Opc.Ua.Client</PackageId>
|
|
<RootNamespace>Opc.Ua.Client</RootNamespace>
|
|
<Description>OPC UA Client Class Library</Description>
|
|
<IsPackable>true</IsPackable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<PackageId>$(PackageId).Debug</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Stack\Opc.Ua.Core\Opc.Ua.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
|
|
<Reference Include="System.IdentityModel" />
|
|
<Reference Include="System.ServiceModel" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="GetPackagingOutputs" />
|
|
|
|
</Project>
|