2 implementations of Exists
Microsoft.DotNet.Configurer (2)
FirstTimeUseNoticeSentinel.cs (1)
31public bool Exists()
NoOpFirstTimeUseNoticeSentinel.cs (1)
8public bool Exists()
2 references to Exists
dotnet (1)
Program.cs (1)
234var isFirstTimeUse = !firstTimeUseNoticeSentinel.Exists() && !skipFirstTimeUseCheck;
Microsoft.DotNet.Configurer (1)
DotnetFirstTimeUseConfigurer.cs (1)
48var isFirstTimeUse = !_skipFirstTimeUseCheck && !_firstTimeUseNoticeSentinel.Exists();