Skip to content
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

Add debugger display to CancellationTokenSource #107234

Closed
wants to merge 1 commit into from
Closed
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Collections.Generic;
using System.Linq;
using System.Reflection;
Expand Down Expand Up @@ -277,5 +274,20 @@
}
return null;
}

internal static void ValidateDebuggerDisplayAttribute_CancellationTokenSource()
{
var cts = new CancellationTokenSource();

Check failure on line 280 in src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Release NativeAOT_Libraries)

src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs#L280

src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs(280,27): error CS0246: (NETCORE_ENGINEERING_TELEMETRY=Build) The type or namespace name 'CancellationTokenSource' could not be found (are you missing a using directive or an assembly reference?)

Check failure on line 280 in src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release NativeAOT_Libraries)

src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs#L280

src/libraries/Common/tests/System/Diagnostics/DebuggerAttributes.cs(280,27): error CS0246: (NETCORE_ENGINEERING_TELEMETRY=Build) The type or namespace name 'CancellationTokenSource' could not be found (are you missing a using directive or an assembly reference?)
string display = ValidateDebuggerDisplayReferences(cts);
Debug.Assert(display == "IsCancellationRequested = False, IsDisposed = False");

cts.Cancel();
display = ValidateDebuggerDisplayReferences(cts);
Debug.Assert(display == "IsCancellationRequested = True, IsDisposed = False");

cts.Dispose();
display = ValidateDebuggerDisplayReferences(cts);
Debug.Assert(display == "IsCancellationRequested = True, IsDisposed = True");
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Collections.Generic;

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build osx-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-armel checked CoreCLR_NonPortable)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x86 checked CoreCLR_NoR2R)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build linux-x64 release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 checked CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 Debug AllSubsets_CoreCLR_ReleaseRuntimeLibs)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build freebsd-x64 Debug CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_CoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Libraries_CheckedCoreCLR)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm checked CoreCLR_ReleaseLibraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-arm64 debug Mono_Runtime)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvossimulator-x64 Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Debug CoreCLR_Libraries)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-riscv64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_Interpreter_LibrariesTests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build tvos-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build wasi-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop (Build linux-x64 debug Libraries_AllConfigurations)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build maccatalyst-x64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests (Build browser-wasm linux release Runtime_Release)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build android-arm64 Release AllSubsets_Mono)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / dotnet-linker-tests

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Debug Mono_MiniJIT_LibrariesTests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_LLVMAOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build ios-arm64 Release AllSubsets_NativeAOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Smoke_AOT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build coreclr Common Pri0 Test Build AnyOS AnyCPU checked)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 Release AllSubsets_Mono_Minijit_RuntimeTests minijit)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 Release AllSubsets_Mono_LLVMAot_RuntimeTests llvmaot)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_EAT)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests_Threading)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build browser-wasm linux Release LibraryTests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build osx-x64 Release AllSubsets_Mono_Interpreter_RuntimeTests monointerpreter)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked CLR_Tools_Tests)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 checked Native_GCC)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-x64 release CrossAOT_Mono crossaot)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux_musl-arm64 release CrossAOT_Mono crossaot)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-x64 release CrossAOT_Mono crossaot)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime (Build linux-arm64 release CrossAOT_Mono crossaot)

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime-dev-innerloop

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)

Check failure on line 1 in src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs

View check run for this annotation

Azure Pipelines / runtime

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs#L1

src/libraries/System.Private.CoreLib/src/System/Threading/CancellationTokenSource.cs(1,1): error IDE0073: (NETCORE_ENGINEERING_TELEMETRY=Build) A source file is missing a required header. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0073)
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
Expand All @@ -22,6 +19,7 @@
/// concurrently from multiple threads.
/// </para>
/// </remarks>
[DebuggerDisplay("IsCancellationRequested = {IsCancellationRequested}, Disposed = {_disposed}")]
public class CancellationTokenSource : IDisposable
{
/// <summary>A <see cref="CancellationTokenSource"/> that's already canceled.</summary>
Expand Down
Loading