Below you will find pages that utilize the taxonomy term “ASP.NET Core”
Posts
ASP.NET Core - Building Projects with Yeoman
要使用 Yeoman 去建立 ASP.NET Core 專案,首先需安裝 Yeoman 與 bower。
npm install -g yo bower 再來要安裝 ASP.NET generator。
npm install -g generator-aspnet ASP.NET generator 安裝完後,透過 Yeoman 叫用 ASP.NET generator。
yo aspnet 選取要使用的應用程式範本。
設定應用程式名稱,Yeoman 就會幫我們建立應用程式專案。
應用程式專案建立完整個目錄結構會像下面這樣:
到這邊就可以開啟專案來開發應用程式了,開發完成,我們可以還原會使用到的套件。
dotnet restore 然後將應用程式運行起來看看 (dotnet run 會順帶運行 dotnet build,這種情況下 dotnet build 可省略不調用)。
dotnet build dotnet run Link Building Projects with Yeoman Creating a new ASP.NET Core project using Yeoman · asp.net core from the ground up
read more