diff --git a/src/coreclr/crossgen-corelib.proj b/src/coreclr/crossgen-corelib.proj index a394fa781597ab..f4ff62f016f264 100644 --- a/src/coreclr/crossgen-corelib.proj +++ b/src/coreclr/crossgen-corelib.proj @@ -5,7 +5,7 @@ - true + false $(TargetOS).$(TargetArchitecture).$(Configuration) $(RepoRoot)\artifacts diff --git a/src/libraries/System.Threading.Channels/src/System/Threading/Channels/AsyncOperation.cs b/src/libraries/System.Threading.Channels/src/System/Threading/Channels/AsyncOperation.cs index 370535da7cc252..b13548cb4aae74 100644 --- a/src/libraries/System.Threading.Channels/src/System/Threading/Channels/AsyncOperation.cs +++ b/src/libraries/System.Threading.Channels/src/System/Threading/Channels/AsyncOperation.cs @@ -16,7 +16,7 @@ internal abstract class AsyncOperation protected static readonly Action s_availableSentinel = AvailableSentinel; // named method to help with debugging private static void AvailableSentinel(object? s) => Debug.Fail($"{nameof(AsyncOperation)}.{nameof(AvailableSentinel)} invoked with {s}"); - /// Sentinel object used in a field to indicate the operation has completed. + /// Sentinel object used in a field to indicate the operation has completed protected static readonly Action s_completedSentinel = CompletedSentinel; // named method to help with debugging private static void CompletedSentinel(object? s) => Debug.Fail($"{nameof(AsyncOperation)}.{nameof(CompletedSentinel)} invoked with {s}");