.NET Core

Posted FrankYou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.NET Core相关的知识,希望对你有一定的参考价值。

.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的主要内容,如果未能解决你的问题,请参考以下文章

markdown [Apereo CAS 3.5 CORE] Apereo CAS 3.5 #CAS的核心代码片段

如何使用模块化代码片段中的LeakCanary检测内存泄漏?

django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段

django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段

Asp.Net Core Data Protection API 用于保护数据库中的数据

学习ASP.NET Core,怎能不了解请求处理管道[2]: 服务器在管道中的“龙头”地位