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
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"jetbrains.resharper.globaltools": {
"version": "2026.1.0.1",
"version": "2026.1.1",
"commands": [
"jb"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// The .NET Foundation licenses this file to you under the Apache 2.0 License.
// See the LICENSE file in the project root for more information.

using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;

namespace Steeltoe.Management.Endpoint.Actuators.Health.Contributors.FileSystem;
Expand All @@ -27,7 +26,6 @@ private NetworkShareWrapper(ulong freeBytesAvailable, ulong totalNumberOfBytes)
: null;
}

[ExcludeFromCodeCoverage(Justification = "Workaround for https://github.com/coverlet-coverage/coverlet/issues/1762")]
private static partial class NativeMethods
{
[LibraryImport("kernel32.dll", EntryPoint = "GetDiskFreeSpaceExW", StringMarshalling = StringMarshalling.Utf16, SetLastError = true)]
Expand Down
12 changes: 6 additions & 6 deletions versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@
-->

<AspNetCoreHealthChecksVersion>9.0.*</AspNetCoreHealthChecksVersion>
<CoverletVersion>8.0.*</CoverletVersion>
<CoverletVersion>10.0.*</CoverletVersion>
<FluentAssertionsVersion>7.2.*</FluentAssertionsVersion>
<MicrosoftAzureCosmosVersion>3.58.*</MicrosoftAzureCosmosVersion>
<MicrosoftCodeAnalysisVersion>5.0.*</MicrosoftCodeAnalysisVersion>
<MicrosoftSqlClientVersion>7.0.*</MicrosoftSqlClientVersion>
<MockHttpVersion>7.0.*</MockHttpVersion>
<MongoDbDriverVersion>3.7.*</MongoDbDriverVersion>
<MongoDbDriverVersion>3.8.*</MongoDbDriverVersion>
<MoqVersion>4.20.69</MoqVersion>
<MySqlConnectorVersion>2.5.*</MySqlConnectorVersion>
<MySqlDataVersion>9.6.*</MySqlDataVersion>
<MySqlDataVersion>9.7.*</MySqlDataVersion>
<NewtonsoftJsonVersion>13.0.*</NewtonsoftJsonVersion>
<PublicApiAnalyzersVersion>3.3.*</PublicApiAnalyzersVersion>
<RabbitClientTestVersion>7.2.*</RabbitClientTestVersion>
<SerilogEnrichersThreadVersion>4.0.*</SerilogEnrichersThreadVersion>
<SerilogExceptionsVersion>8.4.*</SerilogExceptionsVersion>
<SonarAnalyzerVersion>10.20.0.135146</SonarAnalyzerVersion>
<SonarAnalyzerVersion>10.25.0.139117</SonarAnalyzerVersion>
<StyleCopVersion>1.2.0-beta.556</StyleCopVersion>
<SystemCommandLineVersion>2.0.*</SystemCommandLineVersion>
<SystemIdentityModelVersion>8.15.*</SystemIdentityModelVersion>
<SystemSqlClientVersion>4.9.*</SystemSqlClientVersion>
<TestSdkVersion>18.4.*</TestSdkVersion>
<TestSdkVersion>18.5.*</TestSdkVersion>
<XunitVersion>3.2.*</XunitVersion>
<XunitVisualStudioVersion>3.1.*</XunitVisualStudioVersion>
</PropertyGroup>
Expand Down Expand Up @@ -68,7 +68,7 @@
-->
10.0.*
</FoundationalVersion>
<MicrosoftIdentityModelVersion>8.14.*</MicrosoftIdentityModelVersion>
<MicrosoftIdentityModelVersion>8.15.*</MicrosoftIdentityModelVersion>
<MicrosoftDiagnosticsNETCoreClientVersion>0.2.652701</MicrosoftDiagnosticsNETCoreClientVersion>
<MicrosoftDiagnosticsTracingTraceEventVersion>3.1.23</MicrosoftDiagnosticsTracingTraceEventVersion>
<OpenTelemetryExporterPrometheusVersion>1.15.*-*</OpenTelemetryExporterPrometheusVersion>
Expand Down
Loading