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