MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come accedere al repository Nuget da .NET Core usando Visual Studio Code

Ho provato a creare un nuovo progetto, sembra che ci sia un bug che Code prevede che project.json sia alla radice della cartella aperta (che non lo è). La soluzione finale per me è stata aggiungere "MongoDB.Driver.Core": "2.3.0" nel file project.json, quindi ora sembra così (questo è un project.json predefinito con il bit aggiunto):

{
  "version": "1.0.0-*",
  "buildOptions": {
    "debugType": "portable",
    "emitEntryPoint": true
  },
  "dependencies": {
    "MongoDB.Driver.Core": "2.3.0"
  },
  "frameworks": {
    "netcoreapp1.0": {
      "dependencies": {
        "Microsoft.NETCore.App": {
          "type": "platform",
          "version": "1.0.1"
        }
      },
      "imports": "dnxcore50"
    }
  }
}