I have made a new ASP.net 5 project and I want to be able to use the MongoDb database. Therefore i need the mongoDb driver, but dnx/dnu/dnvm don't work with the new RC2. So I was looking for a way to install the MongoDb driver without using dnx/dnu/dnvm. Since CLI dotnet does not have an installer, i think i have to use the project.json file. I tried adding the driver to the project.json
"dependencies": {
"Microsoft.NETCore.App":
,
However this leads to errors whenever I try using using MongoDB.Driver;
How do you add the MongoDb charpt driver to ASP.net 5 ?