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
The software is finished -- and by finished, we mean there are no show-stopping, little-children-killing bugs in it. That we know of. There are probably numerous lower-priority bugs triaged into the next point release or service pack, as well.
36
36
@@ -40,7 +40,7 @@ Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki
40
40
41
41
- Clone the repository using the command `git clone https://github.com/OrchardCMS/OrchardCore.git` and checkout the `main` branch.
42
42
43
-
### Command line
43
+
### Command Line
44
44
45
45
- Install the latest version of the .NET SDK from this page <https://dotnet.microsoft.com/download>
46
46
- Next, navigate to `./OrchardCore/src/OrchardCore.Cms.Web`.
@@ -49,9 +49,9 @@ Here is a more detailed [roadmap](https://github.com/OrchardCMS/OrchardCore/wiki
49
49
50
50
### Visual Studio
51
51
52
-
- Download Visual Studio 2022 (v17.5+) from https://www.visualstudio.com/downloads/
53
-
-Open `OrchardCore.sln` and wait for Visual Studio to restore all Nuget packages.
54
-
- Ensure `OrchardCore.Cms.Web` is the startup project and run it.
52
+
- Download Visual Studio 2022 (v17.5+) from <https://www.visualstudio.com/downloads>.
53
+
-Launch the solution by clicking on `OrchardCore.sln`. Give Visual Studio time to restore all missing Nuget packages.
54
+
- Ensure `OrchardCore.Cms.Web` is set as the startup project. Then run the app.
Copy file name to clipboardExpand all lines: src/docs/getting-started/templates/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ More information about `dotnet new` can be found at <https://docs.microsoft.com/
9
9
Once the .NET Core SDK has been installed, type the following command to install the templates for creating Orchard Core web applications:
10
10
11
11
```CMD
12
-
dotnet new install OrchardCore.ProjectTemplates::1.7.2
12
+
dotnet new install OrchardCore.ProjectTemplates::1.8.0
13
13
```
14
14
15
15
This will use the most stable release of Orchard Core. In order to use the latest `main` branch of Orchard Core, the following command can be used:
16
16
17
17
```CMD
18
-
dotnet new install OrchardCore.ProjectTemplates::1.7.2-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
18
+
dotnet new install OrchardCore.ProjectTemplates::1.8.0-* --nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json
19
19
```
20
20
21
21
## Create a new website
@@ -25,7 +25,7 @@ dotnet new install OrchardCore.ProjectTemplates::1.7.2-* --nuget-source https://
25
25
#### Generate an Orchard Cms Web Application
26
26
27
27
!!! warning
28
-
Due to a bug in the current published version, the following `dotnet new` commands will require the extra argument `--orchard-version 1.7.2`. For instance, instead of typing `dotnet new occms` use `dotnet new occms --orchard-version 1.7.2`
28
+
Due to a bug in the current published version, the following `dotnet new` commands will require the extra argument `--orchard-version 1.8.0`. For instance, instead of typing `dotnet new occms` use `dotnet new occms --orchard-version 1.8.0`
29
29
30
30
```CMD
31
31
dotnet new occms
@@ -47,7 +47,7 @@ Options:
47
47
48
48
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
49
49
string - Optional
50
-
Default: 1.7.2
50
+
Default: 1.8.0
51
51
```
52
52
53
53
Logging can be ignored with this command:
@@ -134,7 +134,7 @@ Options:
134
134
135
135
-ov|--orchard-version Specifies which version of Orchard Core packages to use.
Copy file name to clipboardExpand all lines: src/docs/guides/create-modular-application-mvc/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ There are different ways to create sites and modules for Orchard Core. You can l
18
18
19
19
In this guide we will use our [Code Generation Templates](../../getting-started/templates/). You can install the latest stable release of the templates using this command:
20
20
21
-
```dotnet new install OrchardCore.ProjectTemplates::1.7.2-*```
21
+
```dotnet new install OrchardCore.ProjectTemplates::1.8.0-*```
22
22
23
23
!!! note
24
24
To use the development branch of the template add `--nuget-source https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json`
0 commit comments