so i started trying out the new ASP.NET 5 Platform and have the following dependencies in my Project.json
"dependencies": {
"System.Collections": "4.0.10-beta-23019",
"System.Linq": "4.0.0-beta-23019",
"System.Threading": "4.0.10-beta-23019",
"System.Runtime": "4.0.10-beta-23019",
"Microsoft.CSharp": "4.0.0-beta-23019",
"PetaPoco.Core": "5.1.141-beta"
},
"frameworks": {
"dnx451": { "dependencies": { "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-beta5" } },
"dnxcore50": { "dependencies": { "Microsoft.AspNet.Identity.EntityFramework": "3.0.0-beta5" } }
}
Everything builds fine but when i try to access anything from the PetaPoco namespace. Everything fails with the message.
The type or namespace PetaPoco could not be found, are you missing a using directive or an assembly reference.
I know what this means but even trying to import the namespace causes the same issue and I can see the library right there in the DNX4.5.1 AND DNX5.0 References
Please what Am i missing here
Thanks in advance