- Software Versions
- OS: MacX Version: 10.10.2
- Sh: 3.2.57
- K Version Manager - Build 10319
Installed KVM via Brew. Using the GitHub Documents. Here
Cloned the Sample. Using Sample HelloMVC
'kvm restore'
ran no errors
'k web'
I receive:
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
Any Idea on where or how to approach this?
EDIT
The fix did work. I del my dir, Re-Cloned from github walked through the steps from the fix below and yes it worked now I run
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?)
This is a C# compile error, That means the assemblies were found and tried to compile so I am making progress I will did see this error referenced on the Github issue that was supplied as an answer below.. If I get farther I will post what I find Thanks!