-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathUANodesetWebViewer.csproj
37 lines (31 loc) · 1.42 KB
/
UANodesetWebViewer.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>b2d0ab73-8f42-4b3f-9415-ab542610a5f8</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<None Remove="Application.Config.xml" />
<None Remove="UANodeSet.aasx" />
</ItemGroup>
<ItemGroup>
<Content Include="Application.Config.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.DigitalTwins.Core" Version="1.4.0" />
<PackageReference Include="Azure.Identity" Version="1.12.1" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="12.2.7" />
<PackageReference Include="Microsoft.Azure.Kusto.Ingest" Version="12.2.7" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.5.374.158" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client.ComplexTypes" Version="1.5.374.124" />
<PackageReference Include="System.IO.Packaging" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Views\UACL\" />
<Folder Include="wwwroot\lib\jstree\themes\default\" />
</ItemGroup>
</Project>