我已经在VS2015中启动了一个新的控制台项目。我只有这个代码:
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)
                f.ToExcel(@"path:\abc.xls");
        }
    }
}
当我尝试运行时,我得到了:
无法开始调试。启动项目无法启动。验证启动项目的调试设置。
我怎样才能解决这个问题?谢谢。


