4 implementations of IFirstTimeUseNoticeSentinel
dotnet.Tests (2)
CommandTests\MSBuild\DotnetMsbuildInProcTests.cs (1)
69public sealed class MockFirstTimeUseNoticeSentinel : IFirstTimeUseNoticeSentinel
ConfigurerTests\GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs (1)
261private class MockBasicSentinel : IFileSentinel, IFirstTimeUseNoticeSentinel, IAspNetCertificateSentinel
Microsoft.DotNet.Configurer (2)
FirstTimeUseNoticeSentinel.cs (1)
9public class FirstTimeUseNoticeSentinel : IFirstTimeUseNoticeSentinel
NoOpFirstTimeUseNoticeSentinel.cs (1)
6public class NoOpFirstTimeUseNoticeSentinel : IFirstTimeUseNoticeSentinel
12 references to IFirstTimeUseNoticeSentinel
dotnet (7)
Commands\MSBuild\MSBuildLogger.cs (1)
16private readonly IFirstTimeUseNoticeSentinel _sentinel =
Program.cs (3)
141using (IFirstTimeUseNoticeSentinel disposableFirstTimeUseNoticeSentinel = new FirstTimeUseNoticeSentinel()) 143IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel = disposableFirstTimeUseNoticeSentinel; 385IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel,
Telemetry\Telemetry.cs (3)
30public Telemetry(IFirstTimeUseNoticeSentinel? sentinel) : this(sentinel, null) { } 33IFirstTimeUseNoticeSentinel? sentinel, 80private static bool PermissionExists(IFirstTimeUseNoticeSentinel? sentinel)
dotnet.Tests (3)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurer.cs (2)
11private Mock<IFirstTimeUseNoticeSentinel> _firstTimeUseNoticeSentinelMock; 20_firstTimeUseNoticeSentinelMock = new Mock<IFirstTimeUseNoticeSentinel>();
ConfigurerTests\GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs (1)
221IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel;
Microsoft.DotNet.Configurer (2)
DotnetFirstTimeUseConfigurer.cs (2)
13private readonly IFirstTimeUseNoticeSentinel _firstTimeUseNoticeSentinel; 22IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel,