- 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:

推薦閱讀
- 黑客攻防從入門到精通(實戰秘笈版)
- 垃圾回收的算法與實現
- ASP.NET Core 5.0開發入門與實戰
- Access 數據庫應用教程
- Learning Python by Building Games
- ASP.NET程序設計教程
- 從Excel到Python:用Python輕松處理Excel數據(第2版)
- C語言程序設計教程
- 深入分布式緩存:從原理到實踐
- Unity 3D/2D移動開發實戰教程
- QGIS 2 Cookbook
- OpenCV Android Programming By Example
- Learning Bootstrap 4(Second Edition)
- Python硬件編程實戰
- Scrapy網絡爬蟲實戰