-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBootstrapBlazor.OpcDa.csproj
More file actions
75 lines (60 loc) · 2.98 KB
/
BootstrapBlazor.OpcDa.csproj
File metadata and controls
75 lines (60 loc) · 2.98 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.0.0-rc.2.1</Version>
<RootNamespace>BootstrapBlazor.OpcDa</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<PackageTags>Bootstrap Blazor WebAssembly wasm UI Components OpcDa PLC </PackageTags>
<Description>Bootstrap UI components extensions of OpcDaServer</Description>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.*" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0-rc*" />
</ItemGroup>
<ItemGroup>
<Reference Include="OpcComRcw" HintPath="Lib\OpcComRcw.dll" />
<Reference Include="OpcNetApi" HintPath="Lib\OpcNetApi.dll" />
<Reference Include="OpcNetApi.Com" HintPath="Lib\OpcNetApi.Com.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net6.0" />
<Content Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net6.0" />
<Content Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net6.0" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net7.0" />
<Content Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net7.0" />
<Content Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net7.0" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net8.0" />
<Content Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net8.0" />
<Content Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net8.0" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net9.0" />
<Content Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net9.0" />
<Content Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net9.0" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net10.0" />
<Content Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net10.0" />
<Content Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net10.0" />
</ItemGroup>
<ItemGroup>
<Using Remove="BootstrapBlazor.Components" />
<Using Remove="Microsoft.AspNetCore.Components" />
<Using Remove="Microsoft.Extensions.DependencyInjection" />
</ItemGroup>
</Project>