VisualStudio.Interop.Interfaces/ProjectSystem/Properties/IProjectProperties.cs (6 lines of code) (raw):
using System.Threading.Tasks;
namespace Microsoft.VisualStudio.ProjectSystem.Properties;
public interface IProjectProperties
{
Task<string> GetEvaluatedPropertyValueAsync(string propertyName);
}