码迷,mamicode.com
首页 > Web开发 > 详细

.NET Core

时间:2016-05-18 21:29:22      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

.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"
         }
     }
}

 

.NET Core

标签:

原文地址:http://www.cnblogs.com/frankyou/p/5506216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!