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