VisualStudio.Interop.Interfaces/ProjectSystem/UnconfiguredProject.cs (6 lines of code) (raw):
using System.Threading.Tasks;
namespace Microsoft.VisualStudio.ProjectSystem;
public interface UnconfiguredProject
{
Task<ConfiguredProject> GetSuggestedConfiguredProjectAsync();
}