-
-
Notifications
You must be signed in to change notification settings - Fork 1
chore(TargetFramework): support NET10 #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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> |
| 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> | ||||||
|
|
@@ -20,12 +20,12 @@ | |||||
| </ItemGroup> | ||||||
|
|
||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | ||||||
| <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)" /> | ||||||
|
||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> |
| 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> | ||||||
|
|
@@ -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)" /> | ||||||
|
||||||
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET8Version)" /> |
Copilot
AI
Nov 12, 2025
There was a problem hiding this comment.
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.
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="$(NET9Version)" /> |
| 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> | ||||||
|
|
@@ -18,19 +18,19 @@ | |||||
| </ItemGroup> | ||||||
|
|
||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | ||||||
|
||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET8Version)" /> |
Copilot
AI
Nov 12, 2025
There was a problem hiding this comment.
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.
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> |
| 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> | ||||||
|
|
@@ -18,19 +18,19 @@ | |||||
| </ItemGroup> | ||||||
|
|
||||||
| <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> | ||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | ||||||
|
||||||
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET8Version)" /> |
Copilot
AI
Nov 12, 2025
There was a problem hiding this comment.
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.
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET10Version)" /> | |
| <PackageReference Include="Microsoft.Extensions.Options" Version="$(NET9Version)" /> |
| 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> |
There was a problem hiding this comment.
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.