3 implementations of Exists
dotnet.Tests (1)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurerWIthStateSetup.cs (1)
281public bool Exists()
Microsoft.DotNet.Configurer (2)
FileSentinel.cs (1)
24public bool Exists()
NoOpFileSentinel.cs (1)
15public bool Exists()
3 references to Exists
dotnet.Tests (2)
ConfigurerTests\GivenADotnetFirstTimeUseConfigurer.cs (2)
85_toolPathSentinelMock.Setup(s => s.Exists()).Returns(false); 112_toolPathSentinelMock.Setup(s => s.Exists()).Returns(true);
Microsoft.DotNet.Configurer (1)
DotnetFirstTimeUseConfigurer.cs (1)
45if (_dotnetFirstRunConfiguration.AddGlobalToolsToPath && !_toolPathSentinel.Exists())