使用 .NET Core 建立新程式
首先通過你選擇的平臺的安裝說明安裝 .NET Core SDK :
安裝完成後,開啟命令提示符或終端視窗。
-
使用
mkdir hello_world
建立一個新目錄,然後使用cd hello_world
切換到新建立的目錄。 -
使用
dotnet new console
建立一個新的控制檯應用程式。
這將產生兩個檔案:-
hello_world.csproj
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>netcoreapp1.1</TargetFramework> </PropertyGroup> </Project>
-
Program.cs 中
using System; namespace hello_world { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); } } }
-
-
使用
dotnet restore
恢復所需的包。 -
可選使用
dotnet build
for Debug 或dotnet build -c Release
for Release 構建應用程式。dotnet run
還將執行編譯器並丟擲構建錯誤(如果找到)。 -
使用
dotnet run
for Debug 或dotnet run .\bin\Release\netcoreapp1.1\hello_world.dll
for Release 執行應用程式。