You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 16/umbraco-cms/release-candidate-guide.md
+30-45Lines changed: 30 additions & 45 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,46 +2,56 @@
2
2
description: >-
3
3
Learn how to start testing the Release Candidate for the latest version of
4
4
Umbraco CMS, and find information about new and updated documentation.
5
-
hidden: true
6
5
---
7
6
8
7
# Release Candidate Guide
9
8
10
-
## How to test the Release Candidate
9
+
The can be used to test your website and projects against the next major version of Umbraco CMS.
11
10
12
-
{% hint style="warning" %}
13
-
To install the Umbraco 15 Release Candidate you need the latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
11
+
This article contains all the resources needed for you to start testing.
12
+
13
+
*[How to Test the Release Candidate](#test-the-release-candidate)
14
+
*[What Focus on When Testing](#what-to-focus-on-when-testing)
15
+
*[New and Updated Documentation](#new-and-updated-documentation)
16
+
17
+
{% hint style="info" %}
18
+
This document will be updated and expanded as more and more documentation are added throughout the release candidate phase.
14
19
{% endhint %}
15
20
16
-
The[ release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/15.0.0-rc2).
21
+
## Test the Release Candidate
22
+
23
+
Ensure you meet the prerequisites and move on to the installation steps outlined below.
24
+
25
+
### Prerequisites
26
+
27
+
* The latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
28
+
29
+
### Install the Release Candidate
30
+
31
+
The [release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/16.0.0-rc).
17
32
18
33
1. Install the Umbraco dotnet template for the Release Candidate.
19
34
20
-
```
21
-
dotnet new install Umbraco.Templates::15.0.0-rc*
35
+
```cmd
36
+
dotnet new install Umbraco.Templates::16.0.0-rc*
22
37
```
23
38
24
39
2. Create a new Umbraco project.
25
40
26
-
```
41
+
```cmd
27
42
dotnet new umbraco -n MyCustomUmbracoProject
28
43
```
29
44
30
45
3. Navigate to the newly created folder.
31
46
32
-
```
47
+
```cmd
33
48
cd MyCustomUmbracoProject
34
49
```
35
50
36
-
4. Build the project.
51
+
4. Build and run the project.
37
52
38
-
```
53
+
```cmd
39
54
dotnet build
40
-
```
41
-
42
-
5. Run the project.
43
-
44
-
```
45
55
dotnet run
46
56
```
47
57
@@ -51,9 +61,9 @@ This will boot the project, and write the log to the console. The website is now
51
61
Alternatively, you can install and run the Umbraco project using your favorite IDE (Integrated Development Environment).
52
62
{% endhint %}
53
63
54
-
###What should you focus on when testing?
64
+
## What to focus on when testing
55
65
56
-
Read the [Release Candidate blog post](https://umbraco.com/blog/umbraco-15-release-candidate/) to learn more about notable features and changes added to the upcoming version.
66
+
Read the [Release Candidate blog post](https://umbraco.com/) to learn more about notable features and changes added to the upcoming version.
57
67
58
68
The blog post will mention if there are any specific features or workflows that the Umbraco HQ team needs feedback on.
59
69
@@ -63,33 +73,8 @@ Here is a list of all the articles that are new to this version or have been upd
63
73
64
74
### New articles
65
75
66
-
*[Tutorial: Extending the Help Menu](tutorials/extending-the-help-menu.md)
67
-
*[Running Umbraco in Docker using Docker Compose](fundamentals/setup/install/running-umbraco-on-docker-locally.md)
68
-
*[Creating a Custom Seed Key Provider](extending/creating-custom-seed-key-provider.md)
*[Change Rich Text Editor UI](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/change-rich-text-editor-ui.md)
76
+
* Coming soon...
78
77
79
78
### Updated articles
80
79
81
-
* Changes made based on the removal of the UmbracoAPIController
82
-
*[Common Pitfalls: Static references to scoped references](reference/common-pitfalls.md#static-references-to-scoped-instances-such-as-umbracohelper)
83
-
*[Creating a custom database table](extending/database.md)
0 commit comments