搭建nuget包管理器
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
原文地址:https://www.cnblogs.com/brt3/p/9734519.html
时间: 2024-10-21 03:42:49