Navigation Menu

Skip to content

Commit

Permalink
docs/FAQ: Add section about new .NET Core Console App in VS2017
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Feb 26, 2017
1 parent 125b71e commit a3d6e03
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/guide/FAQ.md
Expand Up @@ -4,4 +4,10 @@
**A**
BenchmarkDotNet requires NuGet 3.x+ and can't be installed in old versions of Visual Studio which use NuGet 2.x.
Consider to use Visual Studio 2015/2017 or [Rider](http://jetbrains.com/rider/).
See also: [BenchmarkDotNet#237](https://github.com/dotnet/BenchmarkDotNet/issues/237), [roslyn#12780](https://github.com/dotnet/roslyn/issues/12780).
See also: [BenchmarkDotNet#237](https://github.com/dotnet/BenchmarkDotNet/issues/237), [roslyn#12780](https://github.com/dotnet/roslyn/issues/12780).

* **Q** Why I can't install BenchmarkDotNet in a new .NET Core Console App in Visual Studio 2017?
**A** BenchmarkDotNet supports only netcoreapp1.1+.
By default, Visual Studio 2017 creates a new application which targets netcoreapp1.0.
You should upgrade it up to 1.1.
If your want to target netcoreapp1.0 in your main assembly, it's recommended to create a separated project for benchmarks.

0 comments on commit a3d6e03

Please sign in to comment.