.net core 运行.NetCore应用程序时出错

.net core 运行.NetCore应用程序时出错,.net-core,asp.net-core-1.0,.net Core,Asp.net Core 1.0,我有一个dotnet核心web应用程序。在调试模式下运行应用程序时,出现以下错误: An error occured attempting to determine the process id of the *.web.exe which is hosting your application. One or more errors occured. Dot net version installed in the machine 解决这个问题的办法是什么 以下是读数: a) 计算机中

我有一个dotnet核心web应用程序。在调试模式下运行应用程序时,出现以下错误:

An error occured attempting to determine the process id of the *.web.exe which 
is hosting your application. One or more errors occured.  
Dot net version installed in the machine
解决这个问题的办法是什么

以下是读数:

a) 计算机中安装的Dotnet版本

 dotnet --version
 1.0.0-preview2-003121

通过Runnig dotnet

Microsoft .Net Core Shared Framework Host: 
Version : 1.0.1
Build : some alphanumeric value 
网络配置设置包括:

 <aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" 
 forwardWindowsAuthToken="false" stdoutLogEnabled="false" 
 stdoutLogFile="..\logs\stdout" />

你的网站是在SSL上运行的吗?@koelkastfilosoof:我不确定。这是我在launchSettings.json“iisExpress”中的iis express设置:{“applicationUrl”:“http://**:55346/”,“sslPort”:0}@koelkastfilosoof:如何检查SSL设置。你能告诉我你是如何运行你的应用程序的吗?在IIS Express或Kestrel中?@koelkastfilosoof:在Kestrel中运行它很好。它第一次要求获得运行Dotnetcore.exe的权限,但在words之后运行正常。似乎当我使用IISExpress运行时,它无法获得运行dotnetcore的权限。问题现在已经解决了。谢谢。你的网站是在SSL上运行的吗?@koelkastfilosoof:我不确定。这是我在launchSettings.json“iisExpress”中的iis express设置:{“applicationUrl”:“http://**:55346/”,“sslPort”:0}@koelkastfilosoof:如何检查SSL设置。你能告诉我你是如何运行你的应用程序的吗?在IIS Express或Kestrel中?@koelkastfilosoof:在Kestrel中运行它很好。它第一次要求获得运行Dotnetcore.exe的权限,但在words之后运行正常。似乎当我使用IISExpress运行时,它无法获得运行dotnetcore的权限。问题现在已经解决了。谢谢
"sdk": {
"version": "1.0.0-preview2-003121"
}