From d67f96d03b026ed1ef8f58aa3cc34abc64af9c82 Mon Sep 17 00:00:00 2001 From: Hsu Still <341464@gmail.com> Date: Mon, 26 Mar 2018 14:28:53 +0800 Subject: [PATCH] Target individual projects instead of solution + This gets rid of unnecessary compilation for the test project. --- docs/docfx.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docfx.json b/docs/docfx.json index a41db4fb6..03de34ee6 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -3,13 +3,13 @@ { "src": [ { - "src": "..", + "src": "../src", "files": [ - "*.sln" + "**.csproj" ], "exclude": [ - "**/obj/**", - "**/bin/**" + "**/bin/**", + "**/obj/**" ] } ],