Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 2 additions & 6 deletions src/Frameworks.props
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
<Project>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
<NET8Version>8.0.*</NET8Version>
<NET9Version>9.0.*</NET9Version>
<NET10Version>10.0.0-rc*</NET10Version>
<NET10Version>10.0.*</NET10Version>
</PropertyGroup>

</Project>
6 changes: 3 additions & 3 deletions src/Longbow.Modbus/Longbow.Modbus.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.1.1</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -10,8 +10,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Longbow.SerialPorts" Version="9.0.2" />
<PackageReference Include="Longbow.TcpSocket" Version="9.0.13" />
<ProjectReference Include="..\Longbow.SerialPorts\Longbow.SerialPorts.csproj" />
<ProjectReference Include="..\Longbow.TcpSocket\Longbow.TcpSocket.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/Longbow.SerialPorts/Longbow.SerialPorts.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.2</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -20,12 +20,12 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net8.0', but the package version is using NET10Version (10.0.*). This should use NET8Version instead to match the appropriate package version for .NET 8.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET8Version)" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="System.IO.Ports" Version="$(NET9Version)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net9.0', but the package version is using NET10Version (10.0.*). This should use NET9Version instead to match the appropriate package version for .NET 9.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />

Copilot uses AI. Check for mistakes.
<PackageReference Include="System.IO.Ports" Version="$(NET9Version)" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/Longbow.Sockets/Longbow.Sockets.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.4</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -18,11 +18,11 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net8.0', but the package version is using NET10Version (10.0.*). This should use NET8Version instead to match the appropriate package version for .NET 8.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET8Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net9.0', but the package version is using NET10Version (10.0.*). This should use NET9Version instead to match the appropriate package version for .NET 9.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET9Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
Expand Down
8 changes: 4 additions & 4 deletions src/Longbow.TcpSocket/Longbow.TcpSocket.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.13</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -18,19 +18,19 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net8.0', but the package version is using NET10Version (10.0.*). This should use NET8Version instead to match the appropriate package version for .NET 8.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET8Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net9.0', but the package version is using NET10Version (10.0.*). This should use NET9Version instead to match the appropriate package version for .NET 9.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Longbow.Sockets" Version="9.0.3" />
<ProjectReference Include="..\Longbow.Sockets\Longbow.Sockets.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Longbow.UdpSocket/Longbow.UdpSocket.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>9.0.0</Version>
<Version>10.0.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -18,19 +18,19 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net8.0', but the package version is using NET10Version (10.0.*). This should use NET8Version instead to match the appropriate package version for .NET 8.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET8Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />

Copilot AI Nov 12, 2025

Copy link

Choose a reason for hiding this comment

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

The condition targets 'net9.0', but the package version is using NET10Version (10.0.*). This should use NET9Version instead to match the appropriate package version for .NET 9.0.

Suggested change
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" />

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

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Longbow.Sockets" Version="9.0.3" />
<ProjectReference Include="..\Longbow.Sockets\Longbow.Sockets.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
8 changes: 2 additions & 6 deletions test/Version.props
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
<Project>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '17.0'">
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>

<PropertyGroup Condition="'$(VisualStudioVersion)' == '18.0'">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<NET8Version>8.0.*</NET8Version>
<NET9Version>9.0.*</NET9Version>
<NET10Version>10.0.0-rc*</NET10Version>
<NET10Version>10.0.*</NET10Version>
</PropertyGroup>

</Project>
Loading