gpt4 book ai didi

c# - 无法开始调试。无法启动启动项目。 VS2015

转载 作者:IT王子 更新时间:2023-10-29 03:38:27 25 4
gpt4 key购买 nike

我在 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");
}
}
}

当我尝试运行时,我得到了这个:

Unable to start debugging. The startup project could not be launched. Verify debug settings for the startup project.

我该如何解决这个问题?谢谢。

最佳答案

将 MSVC2015 升级到 Update3 后,我遇到了同样的问题:而不是 std::map在 Watch 窗口中显示为一个可怕的 std::_Tree<std::_Tmap_traits...等等,一些插件开始抛出异常,一些项目无法在 Debug模式下运行。

通过删除 CurrentSettings.vssettings 解决了所有问题.它通常位于 Documents\Visual Studio 2015\Settings如果没有,请转到“工具 -> 选项 -> 环境 -> 导入和导出设置”以查找此文件的位置。

关于c# - 无法开始调试。无法启动启动项目。 VS2015,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37612888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com