2

Is there any chance to setup ReSharper 9.1 to auto resolve NuGet packages? I mean when I type and I do not have reference to xUnit.net and press Alt+Enter ReSharper installs xUnit.net via NuGet.

[Fact]
void TestMethod()
{
    Location loc;
}
ulrichb
  • 19,610
  • 8
  • 73
  • 87
Peter
  • 21
  • 1

1 Answers1

2

Yes, it's available in ReSharper 9.1 (free update). See Find types on NuGet at our blog post.

derigel
  • 3,218
  • 2
  • 19
  • 31
  • How can I enable it? I looked for it in settings, but unsuccessfully. http://i.imgur.com/c7VcEH8.png – Peter May 31 '15 at 12:12
  • 1
    You don't have to enable it manually, it's enabled by default in ReSharper 9.1 and available over unresolved type references (red code): http://i.imgur.com/ofRhKEU.png – controlflow Jun 01 '15 at 17:33