Example #1
0
        IEnumerator UpdateCustomSolutionAsync()
        {
            _projectHandler.OverwriteConfig();

            return(_prjCommandHandler.ProcessPrjCommand(
                       "Updating solution", PrjHelper.UpdateCustomSolutionAsync()));
        }
Example #2
0
        IEnumerator ApplyProjectChangeAsync()
        {
            _projectHandler.OverwriteConfig();

            yield return(_prjCommandHandler.ProcessPrjCommand(
                             "Updating directory links", PrjHelper.UpdateLinksAsync()));

            yield return(_prjCommandHandler.ProcessPrjCommand(
                             "Updating custom solution", PrjHelper.UpdateCustomSolutionAsync()));
        }