-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathMinimalBoilerServer.csproj
More file actions
41 lines (41 loc) · 1.9 KB
/
Copy pathMinimalBoilerServer.csproj
File metadata and controls
41 lines (41 loc) · 1.9 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
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<AssemblyName>MinimalBoilerServer</AssemblyName>
<PackageId>MinimalBoilerServer</PackageId>
<Company>OPC Foundation</Company>
<Description>Self-contained .NET console OPC UA server demonstrating source-generated NodeManagers + the fluent wiring API. Native AOT compatible.</Description>
<Copyright>Copyright © 2004-2025 OPC Foundation, Inc</Copyright>
<RootNamespace>Boiler</RootNamespace>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);CA1822</NoWarn>
<PublishAot>true</PublishAot>
<!-- Opt into the root Directory.Build.targets no-op shape on
per-TFM CI matrix entries that pin CustomTestTarget to a
legacy TFM this app cannot target. -->
<RestrictForLegacyTfm>true</RestrictForLegacyTfm>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Libraries\Opc.Ua.Configuration\Opc.Ua.Configuration.csproj" />
<ProjectReference Include="..\..\Libraries\Opc.Ua.Server\Opc.Ua.Server.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Tools\Opc.Ua.SourceGeneration\Opc.Ua.SourceGeneration.csproj">
<OutputItemType>Analyzer</OutputItemType>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Model\Boiler.NodeSet2.xml">
<ModelSourceGeneratorModelUri>http://opcfoundation.org/UA/Boiler/</ModelSourceGeneratorModelUri>
<ModelSourceGeneratorName>Boiler</ModelSourceGeneratorName>
<ModelSourceGeneratorPrefix>Boiler</ModelSourceGeneratorPrefix>
</AdditionalFiles>
</ItemGroup>
</Project>