3 implementations of IFileSentinel
dotnet.Tests (1)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs (1)
261private class MockBasicSentinel : IFileSentinel, IFirstTimeUseNoticeSentinel, IAspNetCertificateSentinel
Microsoft.DotNet.Configurer (2)
FileSentinel.cs (1)
8public class FileSentinel : IFileSentinel
NoOpFileSentinel.cs (1)
6public class NoOpFileSentinel : IFileSentinel
7 references to IFileSentinel
dotnet (2)
Program.cs (2)
145IFileSentinel toolPathSentinel = new FileSentinel(new FilePath(Path.Combine(CliFolderPathCalculator.DotnetUserProfileFolderPath, ToolPathSentinelFileName))); 387IFileSentinel toolPathSentinel,
dotnet.Tests (3)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurer.cs (2)
14private Mock<IFileSentinel> _toolPathSentinelMock; 23_toolPathSentinelMock = new Mock<IFileSentinel>();
ConfigurerTests\GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs (1)
222IFileSentinel toolPathSentinel;
Microsoft.DotNet.Configurer (2)
DotnetFirstTimeUseConfigurer.cs (2)
16private readonly IFileSentinel _toolPathSentinel; 25IFileSentinel toolPathSentinel,