Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.3</Version>
<Version>10.0.0-rc.2.1</Version>
<RootNamespace>BootstrapBlazor.OpcDa</RootNamespace>
</PropertyGroup>

Expand All @@ -27,7 +27,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0-rc*" />
Copy link

Copilot AI Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a floating prerelease version (10.0.0-rc*) can lead to non-deterministic restores and unexpected changes as new RCs are published. Pin this to the intended RC (for example, 10.0.0-rc.2.1) or use an explicit version range to control updates.

Suggested change
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0-rc*" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0-rc.2.1" />

Copilot uses AI. Check for mistakes.
</ItemGroup>

<ItemGroup>
Expand Down Expand Up @@ -60,6 +60,12 @@
<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" />
Expand Down