17 references to IsValidEntryPointPath
dotnet (15)
Commands\DotNetCommandFactory.cs (2)
64
if (nonLoggerArgs is [{ } arg] && VirtualProjectBuilder.
IsValidEntryPointPath
(arg))
91
if (VirtualProjectBuilder.
IsValidEntryPointPath
(candidate))
Commands\NuGet\NuGetCommand.cs (1)
38
&& VirtualProjectBuilder.
IsValidEntryPointPath
(path))
Commands\NuGet\NuGetVirtualProjectBuilder.cs (1)
21
public bool IsValidEntryPointPath(string entryPointFilePath) => VirtualProjectBuilder.
IsValidEntryPointPath
(entryPointFilePath);
Commands\Package\Add\PackageAddCommand.cs (1)
29
bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(fileOrDirectory);
Commands\Package\List\PackageListCommand.cs (1)
26
bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(fileOrDirectory);
Commands\Package\Remove\PackageRemoveCommand.cs (1)
33
bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(fileOrDirectory);
Commands\Project\Convert\ProjectConvertCommand.cs (1)
44
if (!VirtualProjectBuilder.
IsValidEntryPointPath
(file))
Commands\Reference\Add\ReferenceAddCommand.cs (2)
36
if (_allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(_fileOrDirectory))
128
if (VirtualProjectBuilder.
IsValidEntryPointPath
(argument))
Commands\Reference\List\ReferenceListCommand.cs (1)
35
if (_allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(_fileOrDirectory))
Commands\Reference\Remove\ReferenceRemoveCommand.cs (1)
39
if (_allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.
IsValidEntryPointPath
(_fileOrDirectory))
Commands\Run\RunCommand.cs (2)
811
if (VirtualProjectBuilder.
IsValidEntryPointPath
(arg))
896
if (VirtualProjectBuilder.
IsValidEntryPointPath
(arg))
ReleasePropertyProjectLocator.cs (1)
103
if (VirtualProjectBuilder.
IsValidEntryPointPath
(arg))
dotnet-watch (1)
Program.cs (1)
176
return VirtualProjectBuilder.
IsValidEntryPointPath
(entryPointPath);
Microsoft.DotNet.ProjectTools (1)
VirtualProjectBuilder.cs (1)
115
if (
IsValidEntryPointPath
(entryPointFilePath))