1 implementation of IsValidEntryPointPath
dotnet (1)
Commands\NuGet\NuGetVirtualProjectBuilder.cs (1)
20public bool IsValidEntryPointPath(string entryPointFilePath) => VirtualProjectBuilder.IsValidEntryPointPath(entryPointFilePath);
7 references to IsValidEntryPointPath
NuGet.CommandLine.XPlat (7)
Commands\Package\Update\PackageUpdateIO.cs (1)
101bool isFileBasedApp = _msbuildUtility.VirtualProjectBuilder?.IsValidEntryPointPath(project) == true;
Commands\PackageReferenceCommands\AddPackageReferenceCommand.cs (1)
142&& virtualProjectBuilder?.IsValidEntryPointPath(projectPath.Value()) != true))
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (1)
81if (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)
126if (VirtualProjectBuilder?.IsValidEntryPointPath(fullPath) == true) 1065if (VirtualProjectBuilder?.IsValidEntryPointPath(filename) == true)