ฉันได้เริ่มโครงการคอนโซลใหม่ใน 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");
}
}
}
เมื่อฉันพยายามวิ่งฉันจะได้รับสิ่งนี้:
ไม่สามารถเริ่มการดีบัก ไม่สามารถเปิดโครงการเริ่มต้นได้ ตรวจสอบการตั้งค่าการดีบักสำหรับโครงการเริ่มต้น
ฉันจะแก้ไขปัญหานี้ได้อย่างไร? ขอบคุณ.