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>
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net10.0</TargetFrameworks>
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

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

This change (net8.0 → net10.0) will not build with the repo’s current GitHub Actions workflow, which pins actions/setup-dotnet to dotnet-version: '8.x' (.github/workflows/dotnet.yml). Please update CI (and any other build environments) to install an SDK that supports net10.0 (or consider targeting net9.0/net8.0 to match the installed SDK).

Suggested change
<TargetFrameworks>netstandard2.1;net10.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>

Copilot uses AI. Check for mistakes.
<Nullable>enable</Nullable>
<Authors>Miroslav Adamec</Authors>
<Company>Madev</Company>
Expand Down
Loading