30
Incapaz de iniciar a depuração. O projeto de inicialização não pôde ser iniciado. VS2015
Comecei um novo projeto de console no VS2015. Eu só tenho este código: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SautinSoft; namespace PdfParser { class Program { static void Main(string[] args) { string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); SautinSoft.PdfFocus f = new PdfFocus(); f.OpenPdf(@"path:\abc.pdf"); if (f.PageCount > 0) …