前面讲解了VSCode开发调试 .NET Core。都只是在windows下运行。
.NET Core真正的核心是跨平台,我们现在来了解学习 .NET Core 跨平台。
在windows 下开发.NET Core 应用程序,然后部署到Linux 平台运行。
.NET Core RC2版基本上已经完成。
https://github.com/dotnet/cli/milestones
可以看到
1.0.0-rc2
环境安装
本文开发环境: win10 x64 VSCode 1.0
下载
.NET Core SDK Installer:
https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-dev-win-x64.latest.exe
VSCode :
https://code.visualstudio.com/
VSCode C#插件:
https://github.com/OmniSharp/omnisharp-vscode/releases
开发调试
采用微软官方示例,进行开发调试,并最终部署到Linux。
https://github.com/aspnet/cli-samples
我们来添加一个新的Action。
[HttpGet("/info"