标签:
.NET Core:http://dotnet.github.io/
Getting Started:http://dotnet.github.io/getting-started/#/windows
.NET Core SDK下载(包含.NET Core Runtime和命令行工具):https://github.com/dotnet/cli
NuGet.config (应用程序所使用的NuGet包所在站点地址)
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="RC2" value="https://www.myget.org/aspnetrc2/api/v3/index.json"/> </packageSources> </configuration>
Project.json
{ "version":"1.0.0", "buildOptions":{ "emitEntryPoint":true }, "dependencies":{ "Microsoft.NETCore.App":{ "type":"platform", "version":"1.0.0-rc2-3002702" }, "Microsoft.AspNetCore.Mvc":"1.0.0-rc2-final", "Microsoft.AspNetCore.Server.Kestrel":"1.0.0-rc2-final" }, "frameworks":{ "netcoreapp1.0":{ "imports":"dnxcore50" } } }
标签:
原文地址:http://www.cnblogs.com/frankyou/p/5506216.html