- Learning ASP.NET Core 2.0
- Jason De Oliveira Michel Bruchet
- 140字
- 2021-07-02 22:04:17
Creating your first ASP.NET Core 2.0 application in Linux
To create and run your first sample application using only the Terminal window in Linux, you have to do the following steps:
- If the .NET Core 2.0 SDK is not yet installed, then download and install .NET Core Preview 2 from https://www.microsoft.com/net/core/preview for your Linux distribution. Here is an example of how to do that for Ubuntu:
sudosh -c 'echo "deb [arch=amd64]
https://apt-mo.trafficmanager.net/repos/dotnet-release/
xenial main" > /etc/apt/sources.list.d/dotnetdev.list' sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80
--recv-keys 417A0893 sudo apt-get update sudo apt-get install dotnet-sdk-2.0.0-preview2-006497
- Create a folder for your sample application,
mkdir ~/Documents/aspnetcoremvcsample. - Move into the created folder, cd ~/Documents/aspnetcoremvcsample.
- Create a new web application based on the ASP.NET Core 2.0 MVC web application template, dotnet new mvc:

- Run the sample application by executing dotnet run:

- Open a browser and go to http://localhost:5000:

推薦閱讀
- 數據科學實戰手冊(R+Python)
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- MATLAB 2020 從入門到精通
- 數據庫系統原理及MySQL應用教程
- 算法精粹:經典計算機科學問題的Python實現
- Learning ArcGIS Pro
- Python機器學習實戰
- Bootstrap 4 Cookbook
- C#開發案例精粹
- Java網絡編程實戰
- Learning Modular Java Programming
- .NET 4.5 Parallel Extensions Cookbook
- jQuery從入門到精通(微課精編版)
- 微前端設計與實現
- R的極客理想:量化投資篇