vs右键在浏览器中查看报错

news/2024/5/20 0:28:44 标签: c#, asp.net, netcore, .netcore, net

vs右键在浏览器中查看报错Visual studio 右键在浏览器中查看报错HTTP错误500.30——ANCM进程内启动失败——.NET Core HTTP Error 500.30 - ANCM In-Process Start Failure - .NET Core

HTTP Error 500.30 - ANCM In-Process Start Failure

Common solutions to this issue:

  • The application failed to start
  • The application started but then stopped
  • The application started but threw an exception during startup

Troubleshooting steps:

  • Check the system event log for error messages
  • Enable logging the application process' stdout messages
  • Attach a debugger to the application process and inspect

 vs2022第一个解决方法 在扩展选项卡 更新扩展live share和Web live preview  也有可能不是netxx的sdk下载后解决

.netcore>netcore项目可能是出不来的 2019出不来, 2022可以正常右键运行

.netframework 可以正常右键出来 

.netcore>netcore项目就一直报下面这个,还是没找原因,但是VS2022没报错 就没管了

HTTP Error 500.30 - ASP.NET Core app failed to start

Common solutions to this issue:

  • The app failed to start
  • The app started but then stopped
  • The app started but threw an exception during startup

Troubleshooting steps:

  • Check the system event log for error messages
  • Enable logging the application process' stdout messages
  • Attach a debugger to the application process and inspect

vs2019 附加项目出错:无法打开项目文件。 无法找到 .NET SDK

无法打开项目文件。 无法找到 .NET SDK。请检查确保已安装此项且 global.json 中指定的版本(如有)与所安装的版本相匹配

解决方法:

打开系统环境变量

把“C:\Program Files (x86)\dotnet\”放到“C:\Program Files\dotnet\”后面,然后确定保存,重启下电脑就可以了改后重启再打开项目


http://www.niftyadmin.cn/n/5454116.html

相关文章

区块链使用记录

区块链使用记录 参考资料FAQ部署智能合约遇到Network up to date.错误hit an invalid opcode while deploying. Try: 参考资料 使用vscode编辑器,开发智能合约FISCO BCOS 七、MetaMask测试Ganache搭建的私有网络WTF Solidity极简入门 FAQ 部署智能合约遇到Networ…

因果推断学习

^abIntroduction to Causal Inference Introduction to Causal Inference^因果推断学习2 --- 相关性!因果性 因果推断学习2 --- 相关性!因果性 - 知乎^Theoretical Impediments to Machine Learning With Seven Sparks from the Causal Revolution https://arxiv.org/pdf/1801.…

Manacher算法学习笔记(洛谷题单 Part 5.3 Manacher)

0.随便说说 字符串学的太差了,每次字符串算法都是学完了就忘,正好上场 c f d i v 1 B cfdiv1B cfdiv1B考了一个 M a n a c h e r Manacher Manacher,就先复习它了。 1.一些概念 子串 ( s u b s t r i n g ) (substring) (substring)&#…

外包干了5年,技术退步明显.......

先说一下自己的情况,大专生,18年通过校招进入杭州某软件公司,干了接近4年的功能测试,今年年初,感觉自己不能够在这样下去了,长时间呆在一个舒适的环境会让一个人堕落! 而我已经在一个企业干了四年的功能测…

C语言程序课程实践:贪吃蛇

Github地址&#xff1a;贪吃蛇 头文件 #include<stdio.h> #include<Windows.h> #include<conio.h> #include<time.h> #define MAP_WIDTH 100 #define MAP_HEIGHT 30 #define UP w #define DOWN s #define LEFT a #define RIGHT dtypedef struct {int…

JS-15-箭头函数

一、箭头函数 ES6标准新增了一种新的函数&#xff1a;箭头函数 定义如下&#xff1a; x > x * x 上面的箭头函数相当于&#xff1a; function (x) {return x * x; } 箭头函数相当于匿名函数&#xff0c;并且简化了函数定义。 1-1、箭头函数的格式 箭头函数有两种格式…

【数据库管理操作】Mysql 创建学生数据库及对数据表进行修改

MySQL 创建学生成绩数据库 1.创建数据库 create database studentscore;创建完成之后&#xff0c;如果需要使用该数据&#xff0c;使用use命令 use studentscore;创建表前查看当前数据库中包含的表 show tables; 2.创建bclass表 create table bclass( class_id char(8) …

基于 C++ STL 的图书管理系统213行

定制魏&#xff1a;QTWZPW&#xff0c;获取更多源码等 目录 一、实践项目名称 二、实践目的 三、实践要求 四、实践内容 五、代码框架参考 六、代码效果展示 七、完整代码主函数展示 一、实践项目名称 基于 C STL 的图书管理系统 二、实践目的 通过设计和实现一个基于…