使用VS Code開發 除錯.NET Core RC2應用程式,由於.NET Core 目前還處於預覽版。
本文使用微軟提供的示例進行開發及除錯。
https://github.com/aspnet/cli-samples
.NET Core 介紹及說明:
http://dotnet.github.io/getting-started/
環境安裝
本文開發的實際環境: win10 x64 VSCode 1.0
下載
https://github.com/dotnet/cli#installers-and-binaries
.NET Core SDK Installer:
https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-dev-win-x64.latest.exe
VSCode :
https://code.visualstudio.com/
VSCode C#外掛:
https://github.com/OmniSharp/omnisharp-vscode/releases
最新版: https://github.com/OmniSharp/omnisharp-vscode/releases/download/v1.0.4-rc2/csharp-1.0.4-rc2.vsix
安裝好VSCode以後,開啟VSCode 安裝C#外掛。
安裝外掛:直接用VSCode 開啟外掛檔案就可以安裝了。
安裝好以後 F1 會發現多了dotnet 命令,證明也就安裝完成。
開發除錯
下載微軟的示例程式碼:https://github.com/aspnet/cli-samples
下載程式碼後,使用VSCode 開啟資料夾 cli-samples/HelloMvc
F1 輸入 dotnet restore
選擇對應的dotnet restor (這裡顯示好像是外掛的bug)
你還可以直接在資料夾開啟命令列,輸入 dotnet restore 同樣可以還原相關引用。
還原好相關的引用以後我們就可以進行除錯了。
點選除錯 程式就跑起來。
這樣就可以下斷點除錯。
訪問 http://localhost:5000/
開發
我們來新增一個新的Action
1 2 3 4 5 |
[HttpGet("/about")] public IActionResult About(){ var useragent=Request.Headers["User-Agent"]; return Content(useragent+"\r\nabout by linezero"); } |
訪問: http://localhost:5000/about
下斷點除錯一下程式,斷點設定跟VS一樣。
斷下來以後,可以檢視對應的屬性以及值。
左側有對應的監視器,可以檢視各個值。
這樣我們已經可以除錯.NET Core。