VS 2017退出代码

编程入门 行业动态 更新时间:2024-10-10 13:20:58
本文介绍了VS 2017退出代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

'dotnet.exe'(CoreCLR:DefaultDomain):已加载'C:\Program Files \dotnet \ Shared \ Microsoft .NETCore.App\1.1.1 \ System.Private.CoreLib.ni。 DLL"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'dotnet.exe'(CoreCLR:clrhost):已加载'C:\Users\user \documents \ visual studio 2017 \Projects\ConsoleApp1\ConsoleApp1\bin\Debug\\\etcoreapp1.1\ConsoleApp1.dll'。已加载符号。 'netnet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ Shared \ Microsoft .NETCore.App\1.1.1 \ System.Runtime.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\mscorlib.dll"。无法找到或打开PDB文件。 'netnet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ Shared \ Microsoft.NETCore.App \ 1.1.1\System.Console.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.IO.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.Threading.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.IO.FileSystem.Primitives.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.Text.Encoding.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.Text.Encoding.Extensions.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 'blenet.exe'(CoreCLR:clrhost):已加载'C:\Program Files \dotnet \ shared \ Microsoft.NETCore.App\1.1.1\System.Threading.Tasks.dll"。跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。 程序'[9072] dotnet.exe'已退出,代码为0(0x0)。

'dotnet.exe' (CoreCLR: DefaultDomain): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Private.CoreLib.ni.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Users\user\documents\visual studio 2017\Projects\ConsoleApp1\ConsoleApp1\bin\Debug\netcoreapp1.1\ConsoleApp1.dll'. Symbols loaded. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Runtime.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\mscorlib.dll'. Cannot find or open the PDB file. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Console.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.IO.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Threading.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.IO.FileSystem.Primitives.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Text.Encoding.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Text.Encoding.Extensions.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'dotnet.exe' (CoreCLR: clrhost): Loaded 'C:\Program Files\dotnet\shared\Microsoft.NETCore.App\1.1.1\System.Threading.Tasks.dll'. Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. The program '[9072] dotnet.exe' has exited with code 0 (0x0).

推荐答案

嗨PRASSAAD,

Hi PRASSAAD,

>>跳过加载符号。模块已经过优化,调试器选项"Just My Code"已启用。

>>Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled.

根据输出消息,似乎未加载符号文件。

Based on the output messages, it seems that the symbol file was not loaded.

(1)请在调试模式下调试您的应用程序,而不是发布模式。

(1) Please debug your app in Debug mode, not release mode.

(2)不启用项目属性中的优化选项。

(2) Not enable the optimized option in your project property.

(3)请同时禁用JIT调试。

(3) Please also disable the JIT debugging.

(4)在TOOLS-> Options-> Debugging-> Symbols下启用符号服务器。

(4) Enable the symbol server under TOOLS->Options->Debugging->Symbols.

(5)请同时运行你的VS作为管理员。

(5) Please also run your VS as the admin.

然后在你的代码中添加断点,再次调试你的应用程序。

And then add the breakpoint in your code, debug your app again.

最好的问候,

杰克

更多推荐

VS 2017退出代码

本文发布于:2023-11-16 01:54:59,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1599943.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:代码

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!