C#環境搭建,以及C#編譯器的使用
阿新 • • 發佈:2018-10-01
load www 包管理 download 5.0 mpi share color 環境
搭建nuget包管理器
HomePage
windows環境下,可以下載安裝包:Download
使用最新版本的C#編譯器
C# 5.0之後,微軟將csc開源並獨立運行,其項目命名為——roslyn
Get the C# compiler before v5.0
C# 5.0 之前的版本,編譯器csc集成在 .Net Framework 中,一般在以下目錄中可以找到:
C:\Windows\Microsoft.NET\Framework64\v[版本號]\csc.exe
Run the compiler of .Net Core 2.0+
一般可以通過 dotnet 命令直接調用C#編譯器,因為編譯器已經作為dll包含在了 .Net Core 的安裝包中,路徑在:
- windows
C:\Program Files\dotnet\sdk\v[版本號]\Roslyn\bincore\csc.dll
- linux
/usr/share/dotnet/sdk/v[版本號]/Roslyn/bincore/csc.dll
Get the latest csc.exe on Windows-OS
nuget install Microsoft.Net.Compilers # Install C# and VB compilers nuget install Microsoft.CodeAnalysis # Install Language APIs and Services
C#環境搭建,以及C#編譯器的使用