Exemple #1
0
        /// <summary>
        /// Builds current solution.
        /// </summary>
        /// <returns>Returns true if success; otherwise false.</returns>
        public bool BuildSolution()
        {
            var buildResult = DTEHelper.BuildSolution(_serviceProvider);

            if (buildResult != 0)
            {
                DTEHelper.ShowErrorList(_serviceProvider);
            }
            return(buildResult == 0);
        }