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