2015-10-08 92 views
0

我的錯誤: 「System.InvalidOperationException」類型的未處理的異常出現在dnx.host.dll設置的Visual Studio 2015年 - 「System.InvalidOperationException」類型的未處理的異常出現在dnx.host.dll

使用Visual Studio的調試器2015年

我的代碼:Program.cs中

using System; 

namespace Hello_World 
{ 
    public class Program 
    { 
     public void Main(string[] args) 
     { 
      Console.WriteLine("Hello World"); 
      Console.ReadLine(); 
     } 
    } 
} 

Project.json:

{ 
    "version": "1.0.0-*", 
    "description": "Hello World Console Application", 
    "authors": [ "MNaples" ], 
    "tags": [ "" ], 
    "projectUrl": "", 
    "licenseUrl": "", 

    "dependencies": { 
    }, 

    "commands": { 
    "Hello_World": "Hello_World" 
    }, 

    "frameworks": { 
    "dnx451": { }, 
    "dnxcore50": { 
     "dependencies": { 
     "System.Collections": "4.0.10-beta-23019", 
     "System.Console": "4.0.0-beta-23019", 
     "System.Linq": "4.0.0-beta-23019", 
     "System.Threading": "4.0.10-beta-23019", 
     "Microsoft.CSharp": "4.0.0-beta-23019" 
     } 
    } 
    } 
} 

讓Visual Studio運行我的第一個程序的下一步是什麼? 謝謝!

Windows 7計算機

Error

+0

您正在使用什麼操作系統?你在參考文獻中看到任何錯誤嗎?你還看到任何堆棧跟蹤/內部異常詳細信息? –

+0

Windows 7,在Ref中沒有錯誤,我看到 – Matt

+0

[This](http://stackoverflow.com/questions/30267784/cannot-run-dnx-console-applications)可能會幫助你。 –

回答

0

Project.json:

"commands": { 
"Hello_World": "run" //not "Hello_World": "Hello World" 

},

謝謝 - 溼婆戈帕爾指着我Link

相關問題