From 7a6147cfab0511f38967dd33e39aa76c4c18f989 Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Mon, 16 Sep 2024 13:24:34 +0200 Subject: [PATCH 1/9] Update configuration.md --- 14/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-ui-builder/getting-started/configuration.md b/14/umbraco-ui-builder/getting-started/configuration.md index 69e9bf105aa..11656f604bf 100644 --- a/14/umbraco-ui-builder/getting-started/configuration.md +++ b/14/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,7 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Startup.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. ```csharp builder.CreateUmbracoBuilder() From 4bda63eb460f5a157714138b4a55d3c893979da2 Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Mon, 16 Sep 2024 15:28:44 +0200 Subject: [PATCH 2/9] Update configuration.md --- 14/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-ui-builder/getting-started/configuration.md b/14/umbraco-ui-builder/getting-started/configuration.md index 11656f604bf..69e9bf105aa 100644 --- a/14/umbraco-ui-builder/getting-started/configuration.md +++ b/14/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,7 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Startup.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. ```csharp builder.CreateUmbracoBuilder() From 53e9075d8bf9d4e104949dfacbb2cb7b26eb8c64 Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Mon, 16 Sep 2024 15:29:13 +0200 Subject: [PATCH 3/9] Update configuration.md --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index 69e9bf105aa..11656f604bf 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,7 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Startup.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. ```csharp builder.CreateUmbracoBuilder() From fe57e24dbd8a8199d994199f3e51438a372a5b58 Mon Sep 17 00:00:00 2001 From: Bjarne Fyrstenborg Date: Fri, 18 Oct 2024 13:11:12 +0200 Subject: [PATCH 4/9] Update 13/umbraco-ui-builder/getting-started/configuration.md Co-authored-by: sofietoft --- 13/umbraco-ui-builder/getting-started/configuration.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index 11656f604bf..b051d00e62a 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,9 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Startup.cs` file in the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. + +Alternatively, if your project is upgraded from earlier versions, you can add the configuration to the `Startup.cs` file. ```csharp builder.CreateUmbracoBuilder() From 963ac15dca684c3257c852cdc67e5db788683e52 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 21 Oct 2024 08:28:32 +0200 Subject: [PATCH 5/9] Minor change to trigger GitBook checks --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index b051d00e62a..30776986ef0 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,7 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, You can look in the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, you can look at the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. Alternatively, if your project is upgraded from earlier versions, you can add the configuration to the `Startup.cs` file. From 20c7b35a799d8592b41fc3457b5eb40aca5221fd Mon Sep 17 00:00:00 2001 From: sofietoft Date: Mon, 21 Oct 2024 08:38:39 +0200 Subject: [PATCH 6/9] Trigger GitBook checks --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index 30776986ef0..be21ad885da 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -24,4 +24,4 @@ builder.CreateUmbracoBuilder() .Build(); ``` -The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can then call the relevant fluent APIs to define your solution. +The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution. From 1cc5eec23783933de8195e1efcfb8312fbbab4b3 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Tue, 22 Oct 2024 08:48:26 +0200 Subject: [PATCH 7/9] Trigger GitBook checks --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index be21ad885da..3a2f828ead4 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -24,4 +24,4 @@ builder.CreateUmbracoBuilder() .Build(); ``` -The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution. +The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution. From 89385a0f26cc277605deff88fa81b9f4a9bd3eeb Mon Sep 17 00:00:00 2001 From: sofietoft Date: Tue, 22 Oct 2024 08:52:10 +0200 Subject: [PATCH 8/9] GitBook checks --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index 3a2f828ead4..be21ad885da 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -24,4 +24,4 @@ builder.CreateUmbracoBuilder() .Build(); ``` -The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution. +The `AddUIBuilder` extension method accepts a single parameter, a delegate function with one of the Umbraco UI Builder configuration builder arguments. With this, you can call the relevant fluent APIs to define your solution. From aa2ec2019a6aebff7c86d732a73d9d5b310ff9c2 Mon Sep 17 00:00:00 2001 From: sofietoft Date: Tue, 22 Oct 2024 09:11:04 +0200 Subject: [PATCH 9/9] Another GitBook check --- 13/umbraco-ui-builder/getting-started/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/13/umbraco-ui-builder/getting-started/configuration.md b/13/umbraco-ui-builder/getting-started/configuration.md index be21ad885da..3f13172948e 100644 --- a/13/umbraco-ui-builder/getting-started/configuration.md +++ b/13/umbraco-ui-builder/getting-started/configuration.md @@ -8,7 +8,7 @@ Umbraco UI Builder can be configured directly via the `AddUIBuilder` extension m ## AddUIBuilder -To configure Umbraco UI Builder via the `AddUIBuilder` extension method, you can look at the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` we can add our `AddUIBuilder` configuration. +To configure Umbraco UI Builder via the `AddUIBuilder` extension method, you can look at the `Program.cs` file at the root of your web project. From within this file, before the call to `AddComposers()` you can add the `AddUIBuilder` configuration. Alternatively, if your project is upgraded from earlier versions, you can add the configuration to the `Startup.cs` file.