forked from OPCFoundation/UA-.NETStandard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MonoReferenceServer.csproj
39 lines (32 loc) · 1.43 KB
/
MonoReferenceServer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<AssemblyName>MonoReferenceServer</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>MonoReferenceServer</PackageId>
<Company>OPC Foundation</Company>
<Product>OPC UA SDK</Product>
<Description>Mono Reference Server</Description>
<Copyright>Copyright © 2004-2020 OPC Foundation, Inc</Copyright>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\ReferenceServer\ReferenceNodeManager.cs;..\ReferenceServer\ReferenceServer.cs;..\ReferenceServer\ReferenceServerConfiguration.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Stack\Opc.Ua.Core\Opc.Ua.Core.csproj" />
<ProjectReference Include="..\..\Libraries\Opc.Ua.Configuration\Opc.Ua.Configuration.csproj" />
<ProjectReference Include="..\..\Libraries\Opc.Ua.Server\Opc.Ua.Server.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Mono.Options" Version="5.3.0.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<Reference Include="System.IdentityModel" />
<PackageReference Include="NETStandard.Library" Version="2.0.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Quickstarts.MonoReferenceServer.Config.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>