From f64e0bca084c021a0fd45f7b763219f20b696d62 Mon Sep 17 00:00:00 2001 From: William Luu Date: Tue, 19 May 2015 17:08:35 +1000 Subject: [PATCH] Update global.config section As per the announcement, `sources` has been renamed to `projects` and `sources` will be removed in beta5. https://github.com/aspnet/Announcements/issues/18 --- docs/conceptual-overview/understanding-aspnet5-apps.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conceptual-overview/understanding-aspnet5-apps.rst b/docs/conceptual-overview/understanding-aspnet5-apps.rst index 21fb1830fe..bf2ea995a3 100644 --- a/docs/conceptual-overview/understanding-aspnet5-apps.rst +++ b/docs/conceptual-overview/understanding-aspnet5-apps.rst @@ -82,12 +82,12 @@ The **scripts** section is used to specify when certain build automation scripts The global.json File -------------------- -The global.json file is used to configure the solution as a whole. It includes just two sections, ``sources`` and ``sdk`` by default. +The global.json file is used to configure the solution as a whole. It includes just two sections, ``projects`` and ``sdk`` by default. .. literalinclude:: understanding-aspnet5-apps/sample/global.json :language: javascript -The *sources* property designates which folders contain source code for the solution. By default the project structure places source files in a *src* folder, allowing build artifacts to be placed in a sibling folder, making it easier to exclude such things from source control. +The *projects* property designates which folders contain source code for the solution. By default the project structure places source files in a *src* folder, allowing build artifacts to be placed in a sibling folder, making it easier to exclude such things from source control. .. image:: understanding-aspnet5-apps/_static/solution-files.png