-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathBootstrapBlazor.OpcDa.csproj
More file actions
51 lines (40 loc) · 1.92 KB
/
BootstrapBlazor.OpcDa.csproj
File metadata and controls
51 lines (40 loc) · 1.92 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>9.0.0</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>
<None Include="lib\OpcComRcw.dll" Pack="true" PackagePath="lib\net6.0" />
<None Include="lib\OpcNetApi.dll" Pack="true" PackagePath="lib\net6.0" />
<None Include="lib\OpcNetApi.Com.dll" Pack="true" PackagePath="lib\net6.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="OpcComRcw" HintPath="lib\OpcComRcw.dll" Private="true" PackageCopyToOutput="true" />
<Reference Include="OpcNetApi" HintPath="lib\OpcComRcw.dll" Private="true" PackageCopyToOutput="true" />
<Reference Include="OpcNetApi.Com" HintPath="lib\OpcComRcw.dll" Private="true" PackageCopyToOutput="true" />
</ItemGroup>
<ItemGroup>
<Content Include="build\*.targets" PackagePath="build" />
</ItemGroup>
<ItemGroup>
<Using Remove="BootstrapBlazor.Components" />
<Using Remove="Microsoft.AspNetCore.Components" />
<Using Remove="Microsoft.Extensions.DependencyInjection" />
</ItemGroup>
</Project>