2017年8月22日 星期二

.NET Core 常用指令

Core 常用指令



dotnet new [專案範本] -o [專案名稱] : 新增一個專案,專案的範本可以是 console, mvc, webapi 等等。可以執行「dotnet new –help」來獲得更多的說明。



dotnet restore :根據目前的專案檔(package.json 或 xxx.csproj)來得知需要的 frameworks,並下載安裝。



dotnet build :根據目前資料夾中的檔案來做編譯的動作。



dotnet run :預設會根據目前資料夾中的專案當來執行 .Net 應用程式,若是 Web 相關的專案,也會自動啟動 Web Service,給定預設的 URL 和 port,像是 http://localhost5000。



code .:執行visual studio code



參考來源:
https://kw0006667.wordpress.com/2017/05/18/netcore-%E5%BB%BA%E7%AB%8B-asp-net-core-web-api/

https://www.microsoft.com/net/core#windowscmd

沒有留言:

張貼留言

區網電腦連 WAMP 架設的網站 出現You don’t have permission to access / on this server 解決辦法

參考 修改 httpd.conf 內容 1. 將 Require all denied 改為 Require all granted 參考2  修改  httpd-vhosts.conf  內容 2.將 Require local 改為 Require ...