-
Notifications
You must be signed in to change notification settings - Fork 10
/
UA-CloudPublisher.csproj
64 lines (57 loc) · 2.5 KB
/
UA-CloudPublisher.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>1F8C131F-4A90-4802-9DB2-FF0BF5944B0D</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
<StartupObject></StartupObject>
<RootNamespace>Opc.Ua.Cloud.Publisher</RootNamespace>
<AssemblyName>UA-CloudPublisher</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Logs\**" />
<Compile Remove="pki\**" />
<Compile Remove="PublishedNodes\**" />
<Compile Remove="Settings\**" />
<Content Remove="Logs\**" />
<Content Remove="pki\**" />
<Content Remove="PublishedNodes\**" />
<Content Remove="Settings\**" />
<EmbeddedResource Remove="Logs\**" />
<EmbeddedResource Remove="pki\**" />
<EmbeddedResource Remove="PublishedNodes\**" />
<EmbeddedResource Remove="Settings\**" />
<None Remove="Logs\**" />
<None Remove="pki\**" />
<None Remove="PublishedNodes\**" />
<None Remove="Settings\**" />
</ItemGroup>
<ItemGroup>
<None Remove="pac4200.jsonld" />
</ItemGroup>
<ItemGroup>
<Content Include="pac4200.jsonld">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="UACloudPublisher.Config.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.OpenAI" Version="2.0.0" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="Confluent.Kafka" Version="2.6.1" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.374.126" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client.ComplexTypes" Version="1.5.374.126" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common" Version="1.5.374.126" />
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" />
<PackageReference Include="System.Collections.Concurrent" Version="4.3.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
</Project>