14 references to IsValidEntryPointPath
dotnet (12)
Commands\DotNetCommandFactory.cs (2)
62if (nonBinLogArgs is [{ } arg] && VirtualProjectBuilder.IsValidEntryPointPath(arg)) 82if (VirtualProjectBuilder.IsValidEntryPointPath(candidate))
Commands\NuGet\NuGetCommand.cs (1)
29&& VirtualProjectBuilder.IsValidEntryPointPath(path))
Commands\NuGet\NuGetVirtualProjectBuilder.cs (1)
20public bool IsValidEntryPointPath(string entryPointFilePath) => VirtualProjectBuilder.IsValidEntryPointPath(entryPointFilePath);
Commands\Package\Add\PackageAddCommand.cs (1)
29bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.IsValidEntryPointPath(fileOrDirectory);
Commands\Package\List\PackageListCommand.cs (1)
26bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.IsValidEntryPointPath(fileOrDirectory);
Commands\Package\Remove\PackageRemoveCommand.cs (1)
33bool isFileBasedApp = allowedAppKinds.HasFlag(AppKinds.FileBased) && VirtualProjectBuilder.IsValidEntryPointPath(fileOrDirectory);
Commands\Project\Convert\ProjectConvertCommand.cs (1)
41if (!VirtualProjectBuilder.IsValidEntryPointPath(file))
Commands\Run\RunCommand.cs (2)
795if (VirtualProjectBuilder.IsValidEntryPointPath(arg)) 881if (VirtualProjectBuilder.IsValidEntryPointPath(arg))
Program.cs (1)
337&& VirtualProjectBuilder.IsValidEntryPointPath(unmatchedCommandOrFile.Value))
ReleasePropertyProjectLocator.cs (1)
99if (VirtualProjectBuilder.IsValidEntryPointPath(arg))
dotnet-watch (1)
Program.cs (1)
176return VirtualProjectBuilder.IsValidEntryPointPath(entryPointPath);
Microsoft.DotNet.ProjectTools (1)
VirtualProjectBuilder.cs (1)
108if (IsValidEntryPointPath(entryPointFilePath))