10 min. Net Core Simple Getting Started tutorial

Source: Internet
Author: User
Tags dotnet

Take Centos as an example

1. Dependencies Required for installation

Open a command prompt and run the following command:

sudo rpm-uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm
2. Installing the. NET SDK

Update the products that are available for installation, and then install the. NET SDK.

At your command prompt, run the following command:

sudo yum update sudo yum install libunwind libicu sudo yum install dotnet-sdk-2.1.200
3. Create an app

Run the following command:

dotnet new console-o myappcd myApp

MyApp internal Program.cs file code HelloWorld

using System; namespace myapp{    class  program    {        staticvoid Main (string  [] args)        {            Console.WriteLine ("Hello world! " );        }    }}
4. Running the application
Dotnet Run

Congratulations, you've created and run your first. NET Core program!

10 min. Net Core Simple Getting Started tutorial

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.