From a3d6e03098b8a5ed61a97a0496221fa9a22f2f65 Mon Sep 17 00:00:00 2001 From: Andrey Akinshin Date: Sun, 26 Feb 2017 15:35:21 +0500 Subject: [PATCH] docs/FAQ: Add section about new .NET Core Console App in VS2017 --- docs/guide/FAQ.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/guide/FAQ.md b/docs/guide/FAQ.md index bf694202e4..86dfbace7d 100644 --- a/docs/guide/FAQ.md +++ b/docs/guide/FAQ.md @@ -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). \ No newline at end of file +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. \ No newline at end of file