ASP.NET vNext - KVM无法加载文件

时间:2015-02-06 17:24:26

标签: c# asp.net asp.net-mvc kvm asp.net-core

  • 软件版本
  • 操作系统:MacX版本:10.10.2
  • Sh:3.2.57
  • K版本管理器 - Build 10319

通过Brew安装KVM。使用GitHub文档。 Here

克隆样品。使用示例HelloMVC 'kvm restore'没有运行错误

'k web'

我收到:

System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Framework.ConfigurationModel.IConfiguration, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies.
File name: 'Microsoft.Framework.ConfigurationModel.IConfiguration, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'
  at (wrapper managed-to-native) System.Reflection.MonoMethod:InternalInvoke (System.Reflection.MonoMethod,object,object[],System.Exception&)
  at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] in <filename unknown>:0 

关于在何处或如何处理此问题的任何想法?

修改

修复确实有效。我del我的目录,从github重新克隆,从下面的修复中走出了步骤,是的,现在我运行了

  

k kestrel

Microsoft.Framework.Runtime.Roslyn.RoslynCompilationException: /Users/dsmith/Projects/Home/samples/HelloMVC/Startup.cs(11,17): error CS1061: 'IApplicationBuilder' does not contain a definition for 'UseErrorPage' and no extension method 'UseErrorPage' accepting a first argument of type 'IApplicationBuilder' could be found (are you missing a using directive or an assembly reference?)

这是一个C#编译错误,这意味着程序集被找到并尝试编译,所以我正在取得进展我会看到在Github问题上引用的这个错误作为下面的答案提供..如果我走得更远我将发布我发现的谢谢!

1 个答案:

答案 0 :(得分:2)

好的,所以我根据github问题(https://github.com/aspnet/Home/issues/310)中给出的帮助让这个工作。

首先我跑了

  

kvm升级

然后我将github帖子中描述的Nuget.config的内容复制到网站根目录中的Nuget.config中

<configuration>
    <packageSources>
        <add key="AspNetVNext" value="https://www.myget.org/F/aspnetrelease/" />
        <add key="NuGet.org" value="https://nuget.org/api/v2/" />
    </packageSources>
    <packageSourceCredentials>
        <AspNetVNext>
            <add key="Username" value="aspnetreadonly" />
            <add key="ClearTextPassword" value="4d8a2d9c-7b80-4162-9978-47e918c9658c" />
        </AspNetVNext>
    </packageSourceCredentials> </configuration>

然后,修改package.json,如下所示

"dependencies": {
        "Microsoft.AspNet.Server.IIS":"1.0.0-*",
        "Microsoft.AspNet.Mvc": "6.0.0-*",
        "Microsoft.AspNet.Hosting": "1.0.0-*",
        "Microsoft.AspNet.Security.Cookies": "1.0.0-*",
        "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
        "Microsoft.AspNet.StaticFiles": "1.0.0-*",
        "Kestrel": "1.0.0-*"
    },

接下来我跑了

  

kpm restore

这降低了很多软件包的beta3版本(beta1之前就已经崩溃了)

最后,

  

k kestrel

因为k web给了我关于dll的错误。 Dink dank doo .. Bob是你的叔叔.. localhost:5004给我看了一个ASP.NET网站