206 references to Debugger
Aspire.Dashboard.Components.Tests (3)
tests\Shared\AsyncTestHelpers.cs (3)
37if (!Debugger.IsAttached) 100if (task.IsCompleted || Debugger.IsAttached) 133if (task.IsCompleted || Debugger.IsAttached)
Aspire.Dashboard.Tests (3)
tests\Shared\AsyncTestHelpers.cs (3)
37if (!Debugger.IsAttached) 100if (task.IsCompleted || Debugger.IsAttached) 133if (task.IsCompleted || Debugger.IsAttached)
Aspire.Hosting (1)
Dcp\Model\Executable.cs (1)
245public string Mode { get; set; } = System.Diagnostics.Debugger.IsAttached ? ProjectLaunchMode.Debug : ProjectLaunchMode.NoDebug;
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
299if (Debugger.IsAttached)
Aspire.Hosting.Tests (3)
tests\Shared\AsyncTestHelpers.cs (3)
37if (!Debugger.IsAttached) 100if (task.IsCompleted || Debugger.IsAttached) 133if (task.IsCompleted || Debugger.IsAttached)
dotnet-openapi (1)
DebugMode.cs (1)
20while (!Debugger.IsAttached)
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ErrorBehavior.cs (1)
231if (System.Diagnostics.Debugger.IsAttached)
Shared\Utilities\DebugUtils.cs (1)
49Debugger.Launch();
GetDocument.Insider (1)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-alpha.1.24619.8\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (1)
28if (Debugger.IsAttached)
IIS.Common.TestLib (2)
TestConnections.cs (2)
132if (!Debugger.IsAttached) 167if (!Debugger.IsAttached)
IIS.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
ILLink.RoslynAnalyzer (4)
COMAnalyzer.cs (1)
31 if (!System.Diagnostics.Debugger.IsAttached)
DynamicallyAccessedMembersAnalyzer.cs (1)
94 if (!Debugger.IsAttached)
RequiresAnalyzerBase.cs (1)
44 if (!System.Diagnostics.Debugger.IsAttached)
TrimAnalysis\TrimDataFlowAnalysis.cs (1)
77 static readonly TracingType tracingMechanism = Debugger.IsAttached ? TracingType.Debug : TracingType.Console;
Infrastructure.Common (1)
xunit\WcfTestCase.cs (1)
54if (_failFastDuration != System.Threading.Timeout.InfiniteTimeSpan && !System.Diagnostics.Debugger.IsAttached)
InMemory.FunctionalTests (2)
HttpConnectionManagerTests.cs (1)
116public bool IsMet => !Debugger.IsAttached;
src\Servers\Kestrel\shared\test\StreamBackedTestConnection.cs (1)
105if (!Debugger.IsAttached)
Interop.FunctionalTests (2)
Http3\Http3RequestTests.cs (1)
1918var retryCount = !Debugger.IsAttached ? 5 : int.MaxValue;
HttpHelpers.cs (1)
98if (Debugger.IsAttached)
Microsoft.Analyzers.Local.Tests (1)
ApiLifecycle\ApiLifecycleAnalyzerTest.cs (1)
84Assembly.GetAssembly(typeof(Debugger))!,
Microsoft.AspNetCore.BrowserTesting (1)
BrowserTestBase.cs (1)
58if (Debugger.IsAttached)
Microsoft.AspNetCore.Components.Authorization.Tests (1)
AuthorizeViewTest.cs (1)
20private static readonly TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
Microsoft.AspNetCore.Components.Endpoints (1)
Rendering\EndpointHtmlRenderer.Streaming.cs (1)
82Debugger.BreakForUserUnhandledException(ex);
Microsoft.AspNetCore.Components.Performance (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Components.Server.Tests (1)
Circuits\RemoteRendererTest.cs (1)
26private static readonly TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
Microsoft.AspNetCore.Components.Tests (4)
ComponentBaseTest.cs (1)
14private static readonly TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
NavigationManagerTest.cs (1)
14private static readonly TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
RendererTest.cs (1)
22private static readonly TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
Rendering\RendererSynchronizationContextTest.cs (1)
13public TimeSpan Timeout = Debugger.IsAttached ? System.Threading.Timeout.InfiniteTimeSpan : TimeSpan.FromSeconds(10);
Microsoft.AspNetCore.ConcurrencyLimiter.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (2)
134Debugger.BreakForUserUnhandledException(ex); 199Debugger.BreakForUserUnhandledException(errorContext.Exception);
Microsoft.AspNetCore.Diagnostics.Middleware (1)
src\Shared\Debugger\SystemDebugger.cs (1)
29public bool IsAttached => Debugger.IsAttached;
Microsoft.AspNetCore.Grpc.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Hosting.Tests (1)
HostingApplicationDiagnosticsTests.cs (1)
39var timeout = !Debugger.IsAttached ? TimeSpan.FromSeconds(30) : Timeout.InfiniteTimeSpan;
Microsoft.AspNetCore.Http (2)
Internal\IDebugger.cs (1)
19public bool IsAttached => Debugger.IsAttached;
Timeouts\RequestTimeoutsMiddleware.cs (1)
31if (Debugger.IsAttached)
Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Http.Connections (2)
Internal\HttpConnectionManager.cs (2)
155if (!Debugger.IsAttached && lastSeenTick.HasValue && (ticks - lastSeenTick.Value) > _disconnectTimeout) 167if (!Debugger.IsAttached)
Microsoft.AspNetCore.Http.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.InternalTesting (2)
src\Shared\TaskExtensions.cs (2)
81if (task.IsCompleted || Debugger.IsAttached) 115if (task.IsCompleted || Debugger.IsAttached)
Microsoft.AspNetCore.Mvc.Testing (1)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-alpha.1.24619.8\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (1)
28if (Debugger.IsAttached)
Microsoft.AspNetCore.OpenApi.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.OutputCaching.Tests (1)
CachedResponseBodyTests.cs (1)
12private readonly int _timeout = Debugger.IsAttached ? -1 : 5000;
Microsoft.AspNetCore.RequestDecompression.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.ResponseCaching.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.ResponseCaching.Tests (1)
CachedResponseBodyTests.cs (1)
12private readonly int _timeout = Debugger.IsAttached ? -1 : 5000;
Microsoft.AspNetCore.ResponseCompression.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Routing.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Security.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Server.HttpSys.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.Server.IISIntegration (1)
IISMiddleware.cs (1)
121if (Debugger.IsAttached && string.Equals("DEBUG", httpContext.Request.Method, StringComparison.OrdinalIgnoreCase))
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISExpressDeployer.cs (1)
26private readonly TimeSpan ShutdownTimeSpan = Debugger.IsAttached ? TimeSpan.FromMinutes(60) : TimeSpan.FromMinutes(2);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\DebuggerWrapper.cs (1)
15public bool IsAttached => Debugger.IsAttached;
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
src\Servers\Kestrel\shared\test\StreamBackedTestConnection.cs (1)
105if (!Debugger.IsAttached)
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionContext.cs (2)
503if (!Debugger.IsAttached) 706if (Debugger.IsAttached || _connectionAborted)
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.SignalR.Specification.Tests (4)
Internal\TaskExtensions.cs (2)
19if (task.IsCompleted || Debugger.IsAttached) 42if (task.IsCompleted || Debugger.IsAttached)
src\Shared\TaskExtensions.cs (2)
81if (task.IsCompleted || Debugger.IsAttached) 115if (task.IsCompleted || Debugger.IsAttached)
Microsoft.AspNetCore.TestHost (1)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-alpha.1.24619.8\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (1)
28if (Debugger.IsAttached)
Microsoft.AspNetCore.WebSockets.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.AspNetCore.WebUtilities.Microbenchmarks (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.Build (2)
BackEnd\BuildManager\BuildManager.cs (2)
743if (Debugger.IsAttached) 757Debugger.Launch();
Microsoft.Build.Framework (1)
InternalErrorException.cs (1)
135Debugger.Launch();
Microsoft.CodeAnalysis (4)
InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.CodeAnalysis.CodeStyle (4)
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Simplification\AbstractSimplificationService.cs (1)
161var executeSerially = Debugger.IsAttached;
Microsoft.CodeAnalysis.CSharp (1)
CommandLine\CSharpCommandLineParser.cs (1)
285Debugger.Launch();
Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests (1)
EndToEndTests.cs (1)
53if (timeout is { } t && !Debugger.IsAttached)
Microsoft.CodeAnalysis.CSharp.Test.Utilities (1)
CSharpTestBase.cs (1)
1303if (Debugger.IsAttached)
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider (4)
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (4)
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.CodeAnalysis.InteractiveHost (4)
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.CodeAnalysis.LanguageServer (2)
Program.cs (2)
70_ = Debugger.Launch(); 77while (!Debugger.IsAttached && !timeoutSource.Token.IsCancellationRequested)
Microsoft.CodeAnalysis.Test.Utilities (1)
Compilation\CompilationExtensions.cs (1)
355if (!System.Diagnostics.Debugger.IsAttached)
Microsoft.CodeAnalysis.UnitTests (3)
Collections\ImmutableListTestBase.cs (3)
456if (expected != actual) Debugger.Break(); 465if (expected != actual) Debugger.Break(); 502if (expected != actual) Debugger.Break();
Microsoft.CodeAnalysis.Workspaces (6)
Shared\TestHooks\AsynchronousOperationListener.cs (1)
36TrackActiveTokens = Debugger.IsAttached || enableDiagnosticTokens;
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Simplification\AbstractSimplificationService.cs (1)
161var executeSerially = Debugger.IsAttached;
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (4)
src\Compilers\Core\Portable\InternalUtilities\FailFast.cs (4)
29if (Debugger.IsAttached) 31Debugger.Break(); 103if (Debugger.IsAttached) 105Debugger.Break();
Microsoft.DotNet.Build.Tasks.Feed (1)
src\LaunchDebugger.cs (1)
13Debugger.Launch();
Microsoft.Extensions.Hosting.Testing (1)
HostTerminatorService.cs (1)
18internal bool DebuggerAttached = Debugger.IsAttached;
Microsoft.Extensions.Http.Diagnostics (1)
src\Shared\Debugger\SystemDebugger.cs (1)
29public bool IsAttached => Debugger.IsAttached;
Microsoft.Extensions.Logging.Debug (1)
DebugLogger.cs (1)
35return Debugger.IsAttached && logLevel != LogLevel.None;
Microsoft.Extensions.ObjectPool.Microbenchmark (1)
src\Shared\BenchmarkRunner\Program.cs (1)
93if (Debugger.IsAttached)
Microsoft.Maui (2)
HotReload\HotReloadHelper.cs (1)
26 public static bool IsEnabled { get; set; } = Debugger.IsAttached;
VisualDiagnostics\DebuggerHelper.cs (1)
14 public static bool DebuggerIsAttached => _mockDebuggerIsAttached || Debugger.IsAttached;
Microsoft.ML.TestFrameworkCommon (1)
AsyncTestHelper.cs (1)
16return Debugger.IsAttached ? TimeSpan.FromHours(1) : TimeSpan.FromMinutes(1);
Microsoft.VisualStudio.IntegrationTest.Setup (16)
TestTraceListener.cs (16)
37if (Debugger.IsLogging()) 39Debugger.Log(0, null, o?.ToString()); 45if (Debugger.IsLogging()) 47Debugger.Log(0, category, o?.ToString()); 53if (Debugger.IsLogging()) 55Debugger.Log(0, null, message); 61if (Debugger.IsLogging()) 63Debugger.Log(0, category, message); 69if (Debugger.IsLogging()) 71Debugger.Log(0, null, o?.ToString() + Environment.NewLine); 77if (Debugger.IsLogging()) 79Debugger.Log(0, category, o?.ToString() + Environment.NewLine); 85if (Debugger.IsLogging()) 87Debugger.Log(0, null, message + Environment.NewLine); 93if (Debugger.IsLogging()) 95Debugger.Log(0, category, message + Environment.NewLine);
MSBuild (4)
XMake.cs (4)
616if (Debugger.IsAttached) 625Debugger.Launch(); 2528if (!Debugger.IsAttached) 2532while (!Debugger.IsAttached)
MSBuildTaskHost (2)
InternalErrorException.cs (1)
135Debugger.Launch();
OutOfProcTaskHost.cs (1)
88Debugger.Launch();
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
165[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Debugger))]
netstandard (1)
netstandard.cs (1)
650[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Debugger))]
PresentationCore (2)
System\Windows\Diagnostics\VisualDiagnostics.cs (2)
271System.Diagnostics.Debugger.IsAttached || 369get { return s_IsEnableVisualTreeChangedAllowed ?? System.Diagnostics.Debugger.IsAttached; }
PresentationFramework (2)
MS\Internal\Helper.cs (1)
1192Debugger.Break();
System\Windows\Standard\Debug.cs (1)
25Debugger.Break();
Shared (1)
Debugger\SystemDebugger.cs (1)
29public bool IsAttached => Debugger.IsAttached;
Sockets.BindTests (1)
src\Servers\Kestrel\shared\test\StreamBackedTestConnection.cs (1)
105if (!Debugger.IsAttached)
Sockets.FunctionalTests (2)
src\Servers\Kestrel\shared\test\StreamBackedTestConnection.cs (1)
105if (!Debugger.IsAttached)
src\Servers\Kestrel\test\FunctionalTests\RequestTests.cs (1)
47private static readonly int _semaphoreWaitTimeout = Debugger.IsAttached ? 10000 : 2500;
System.ComponentModel.Composition (4)
src\libraries\Common\src\System\Composition\Diagnostics\DebuggerTraceWriter.cs (4)
21get { return Debugger.IsLogging(); } 26get { return Debugger.IsLogging(); } 46if (!Debugger.IsLogging()) 52Debugger.Log(0, null, logMessage);
System.ComponentModel.Composition.Registration (4)
src\libraries\Common\src\System\Composition\Diagnostics\DebuggerTraceWriter.cs (4)
21get { return Debugger.IsLogging(); } 26get { return Debugger.IsLogging(); } 46if (!Debugger.IsLogging()) 52Debugger.Log(0, null, logMessage);
System.Composition.Convention (4)
src\libraries\Common\src\System\Composition\Diagnostics\DebuggerTraceWriter.cs (4)
21get { return Debugger.IsLogging(); } 26get { return Debugger.IsLogging(); } 46if (!Debugger.IsLogging()) 52Debugger.Log(0, null, logMessage);
System.Diagnostics.Debug (1)
System.Diagnostics.Debug.cs (1)
5[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Debugger))]
System.Private.CoreLib (21)
src\coreclr\nativeaot\Runtime.Base\src\System\Runtime\ExceptionHandling.cs (1)
93System.Diagnostics.Debugger.Break();
src\libraries\System.Private.CoreLib\src\System\Buffers\ConfigurableArrayPool.cs (1)
172_lock = new SpinLock(Debugger.IsAttached); // only enable thread tracking if debugger is attached; it adds non-trivial overheads to Enter/Exit
src\libraries\System.Private.CoreLib\src\System\Diagnostics\DebugProvider.Unix.cs (4)
18if (Debugger.IsAttached) 20Debugger.Break(); 50if (Debugger.IsLogging()) 52Debugger.Log(0, null, message);
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ActivityTracker.cs (1)
221Debugger.Log(0, null, "Activity Enabled() called but AsyncLocals Not Supported (pre V4.6). Ignoring Enable");
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
3837Debugger.Log(0, null, $"EventSource Error: {msg}{Environment.NewLine}");
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInvokerCommon.cs (3)
116else if (((strategy & InvokerStrategy.HasBeenInvoked_ObjSpanArgs) == 0) && !Debugger.IsAttached) 145else if (((strategy & InvokerStrategy.HasBeenInvoked_Obj4Args) == 0) && !Debugger.IsAttached) 168if (((strategy & InvokerStrategy.HasBeenInvoked_RefArgs) == 0) && !Debugger.IsAttached)
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncTaskMethodBuilderT.cs (2)
189Debugger.NotifyOfCrossThreadDependency(); // same explanation as with usage below 206Debugger.NotifyOfCrossThreadDependency();
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (2)
187Debugger.NotifyOfCrossThreadDependency(); // same explanation as with usage below 203Debugger.NotifyOfCrossThreadDependency();
src\libraries\System.Private.CoreLib\src\System\Threading\Lock.cs (1)
353Debugger.NotifyOfCrossThreadDependency();
src\libraries\System.Private.CoreLib\src\System\Threading\PortableThreadPool.GateThread.cs (1)
133Debugger.Break();
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\Task.cs (1)
2996Debugger.NotifyOfCrossThreadDependency();
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\TaskScheduler.cs (1)
275if (Debugger.IsAttached)
src\libraries\System.Private.CoreLib\src\System\Threading\Tasks\ValueTask.cs (1)
837Debugger.NotifyOfCrossThreadDependency(); // prevent debugger evaluation from invalidating an underling IValueTaskSource<T> unless forced
src\libraries\System.Private.CoreLib\src\System\Threading\ThreadLocal.cs (1)
311Debugger.NotifyOfCrossThreadDependency();
System.Runtime (1)
artifacts\obj\System.Runtime\Debug\net10.0\System.Runtime.Forwards.cs (1)
159[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.Debugger))]
System.Windows.Forms (4)
System\Windows\Forms\Application.ThreadContext.cs (2)
944if (Debugger.IsAttached) 946Debugger.Break();
System\Windows\Forms\Control.cs (1)
1154public static bool CheckForIllegalCrossThreadCalls { get; set; } = Debugger.IsAttached;
System\Windows\Forms\NativeWindow.cs (1)
210if (Debugger.IsAttached)
System.Xaml (2)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1849if (Debugger.IsLogging())
System\Xaml\InfosetObjects\XamlReaderSettings.cs (1)
41if (Debugger.IsAttached)
Templates.Blazor.WebAssembly.Auth.Tests (1)
src\Shared\E2ETesting\BrowserFixture.cs (1)
149!Debugger.IsAttached &&
Templates.Blazor.WebAssembly.Tests (1)
src\Shared\E2ETesting\BrowserFixture.cs (1)
149!Debugger.IsAttached &&
Templates.Mvc.Tests (1)
src\Shared\E2ETesting\BrowserFixture.cs (1)
149!Debugger.IsAttached &&
Templates.Tests (1)
src\Shared\E2ETesting\BrowserFixture.cs (1)
149!Debugger.IsAttached &&
xunit.console (1)
ConsoleRunner.cs (1)
76Debugger.Launch();