Skip to content

Commit 50041ca

Browse files
committed
Sync commits from GitBook
1 parent 468b13c commit 50041ca

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

16/umbraco-cms/tutorials/creating-a-basic-website/creating-master-template-part-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We will now create a page to display our contact details. For added functionalit
66

77
Here are some potential solutions:
88

9-
* **Use Umbraco Forms (for non-developers):** Umbraco offers an add-on called Umbraco Forms. This tool is ideal for users who aren’t programmers, as it allows editors to create custom forms. You can find more information and purchase the product on [Umbraco.com](https://umbraco.com/products/umbraco-forms/).
9+
* **Use Umbraco Forms (for non-developers):** Umbraco offers an add-on called Umbraco Forms. This tool is ideal for users who aren’t programmers, as it allows editors to create custom forms. You can find more information and purchase the product on [Umbraco.com](https://umbraco.com/products/add-ons/forms/).
1010
* **Build Your Own Contact Form (for developers):** If you prefer a custom solution, you can build your own contact form using [Surface Controllers](../../fundamentals/code/creating-forms.md) in Umbraco.
1111

1212
### Creating the Document Type and Template

16/umbraco-cms/tutorials/creating-a-property-editor/custom-value-conversion-for-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ public class MySuggestionsModel
7575
We have used the property type editor UI alias from `umbraco-package.json` in the implementation of `IsConverter()`.
7676
{% endhint %}
7777

78-
For more advanced Property Value Converter techniques (for example, controlling caching), see the [Property Value Converters](https://docs.umbraco.com/umbraco-cms/extending/property-editors/property-value-converters) article.
78+
For more advanced Property Value Converter techniques (for example, controlling caching), see the [Property Value Converters](../../customizing/property-editors/property-value-converters.md) article.

16/umbraco-cms/tutorials/getting-started-with-entity-framework-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You need to be aware of some things if you are using EF Core, and have installed
3939

4040
* This package has a transient dependency to `Microsoft.CodeAnalysis.Common` which clashes with the same transient dependency from `Umbraco.Cms 13.0.0`. This happens because `Microsoft.EntityFrameworkCore.Design 8.0.0` requires `Microsoft.CodeAnalysis.CSharp.Workspaces` in v4.5.0 or higher.
4141
* If there are no other dependencies that need that package then it installs it in the lowest allowed version (4.5.0). That package then has a strict dependency on `Microsoft.CodeAnalysis.Common` version 4.5.0. The problem is `Umbraco.Cms` through its own transient dependencies that require the version of `Microsoft.CodeAnalysis.Common` to be >= 4.8.0.
42-
* This can be fixed by installing `Microsoft.CodeAnalysis.CSharp.Workspaces` version 4.8.0 as a specific package instead of leaving it as a transient dependency. This is because it will then have a strict transient dependency on `Microsoft.CodeAnalysis.Common` version 4.8.0, which is the same that Umbraco has.
42+
* This can be fixed by installing `Microsoft.CodeAnalysis.CSharp.Workspaces` version 4.10.0 as a specific package instead of leaving it as a transient dependency. This is because it will then have a strict transient dependency on `Microsoft.CodeAnalysis.Common` version 4.8.0, which is the same that Umbraco has.
4343

4444
</details>
4545

@@ -149,7 +149,7 @@ builder.Services.AddUmbracoDbContext<CustomDbContext>((serviceProvider, options)
149149
{% endhint %}
150150

151151
2. Open your terminal and navigate to your project folder.
152-
3. Generate the migration by running:&#x20;
152+
3. Generate the migration by running:
153153

154154
```bash
155155
dotnet ef migrations add InitialCreate --context BlogContext

0 commit comments

Comments
 (0)