private async Task <IVersionInterface> TestInterface(string projectPath)
        {
            IVersionInterface projectInterface = await ProjectInterface.GetProjectInterfaceAsync(projectPath);

            Assert.AreNotEqual(null, projectInterface);
            return(projectInterface);
        }
        private async Task SetupInterfaceAsync()
        {
            Interface = await ProjectInterface.GetProjectInterfaceAsync(ProjectPath);

            if (Interface == null)
            {
                IsMissingInterface = true;
            }
            else
            {
                await Interface.LoadVersionAsync(ProjectPath);

                IsMissingInterface = false;
            }
        }