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
5 changes: 3 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
"isRoot": true,
"tools": {
"dotnet-stryker": {
"version": "4.8.1",
"version": "4.11.0",
"commands": [
"dotnet-stryker"
]
],
"rollForward": false
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud-and-mutations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:


env:
FRAMEWORK_VERSION: 'net9.0'
FRAMEWORK_VERSION: 'net10.0'

PROJECT_FILE: 'PowerUtils.Geolocation.csproj'
TEST_PROJECT_PATH: 'tests/PowerUtils.Geolocation.Tests/PowerUtils.Geolocation.Tests.csproj'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on:


env:
SDK_VERSION_8: '8.0.404'
SDK_VERSION_9: '9.0.310'
SDK_VERSION_8: '8.0.417'
SDK_VERSION_7: '7.0.410'
SDK_VERSION_6: '6.0.428'
COVERAGE_REPORT_DIRECTORY: 'CodeCoverageReports'
Expand Down Expand Up @@ -44,6 +45,7 @@ jobs:
with:
global-json-file: 'global.json'
dotnet-version: |
${{ env.SDK_VERSION_9 }}
${{ env.SDK_VERSION_8 }}
${{ env.SDK_VERSION_7 }}
${{ env.SDK_VERSION_6 }}
Comment thread
NelsonBN marked this conversation as resolved.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@


## Support to <a name="support-to"></a>
- .NET 10.0
- .NET 9.0
- .NET 8.0
- .NET 7.0
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "9.0.306"
"version": "10.0.102"
}
}
4 changes: 2 additions & 2 deletions src/PowerUtils.Geolocation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<ProjectGuid>67b47aa4-5f1b-40a8-83cd-eeb411aacfe8</ProjectGuid>

<TargetFrameworks>net9.0;net8.0;net7.0;net6.0</TargetFrameworks>
<TargetFrameworks>net10.0;net9.0;net8.0;net7.0;net6.0</TargetFrameworks>

<AssemblyName>PowerUtils.Geolocation</AssemblyName>
<RootNamespace>PowerUtils.Geolocation</RootNamespace>
Expand Down Expand Up @@ -78,7 +78,7 @@


<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>

<RootNamespace>PowerUtils.Geolocation.Tests</RootNamespace>
<AssemblyName>PowerUtils.Geolocation.Tests</AssemblyName>
Expand All @@ -25,7 +25,7 @@


<ItemGroup>
<PackageReference Include="AwesomeAssertions" Version="9.1.0" />
<PackageReference Include="AwesomeAssertions" Version="9.3.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.console" Version="2.9.3">
<PrivateAssets>all</PrivateAssets>
Expand All @@ -42,8 +42,8 @@
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' != 'net6.0' and '$(TargetFramework)' != 'net7.0' ">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
Loading