forked from OPCFoundation/UA-.NETStandard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMonoReferenceServer.csproj
More file actions
31 lines (31 loc) · 1.24 KB
/
MonoReferenceServer.csproj
File metadata and controls
31 lines (31 loc) · 1.24 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</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>
<None Update="Quickstarts.MonoReferenceServer.Config.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>