1 implementation of IsValidEntryPointPath
dotnet (1)
Commands\NuGet\NuGetVirtualProjectBuilder.cs (1)
20
public bool
IsValidEntryPointPath
(string entryPointFilePath) => VirtualProjectBuilder.IsValidEntryPointPath(entryPointFilePath);
7 references to IsValidEntryPointPath
NuGet.CommandLine.XPlat (7)
Commands\Package\Update\PackageUpdateIO.cs (1)
101
bool isFileBasedApp = _msbuildUtility.VirtualProjectBuilder?.
IsValidEntryPointPath
(project) == true;
Commands\PackageReferenceCommands\AddPackageReferenceCommand.cs (1)
142
&& virtualProjectBuilder?.
IsValidEntryPointPath
(projectPath.Value()) != true))
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (1)
81
if (msBuild.VirtualProjectBuilder?.
IsValidEntryPointPath
(projectFullPath) == true)
Commands\PackageReferenceCommands\RemovePackageReferenceCommand.cs (1)
79
&& virtualProjectBuilder?.
IsValidEntryPointPath
(projectPath.Value()) != true))
Commands\Why\WhyCommandRunner.cs (1)
191
_msbuildUtility.VirtualProjectBuilder?.
IsValidEntryPointPath
(fullPath) == true)))
Utility\MSBuildAPIUtility.cs (2)
126
if (VirtualProjectBuilder?.
IsValidEntryPointPath
(fullPath) == true)
1065
if (VirtualProjectBuilder?.
IsValidEntryPointPath
(filename) == true)