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: 15/umbraco-cms/extending/packages/README.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,10 +45,6 @@ Workspace Views are almost like dashboards for content nodes that are intended t
45
45
46
46
This type of package can be a lot of things, and can include a number of the other package types. They are generally integrating a larger system into Umbraco. A good example could be an e-commerce package such as [Umbraco Commerce](https://docs.umbraco.com/umbraco-commerce), that includes an entire webshop module for Umbraco.
47
47
48
-
## [Types of Packages](types-of-packages.md)
49
-
50
-
Packages for Umbraco 10 and above are installed as NuGet packages.
51
-
52
48
## [Creating a Package](creating-a-package.md)
53
49
54
50
This short tutorial will teach you how to create a package in the Umbraco backoffice. It will also give a quick overview of what a generated package will contain.
Copy file name to clipboardExpand all lines: 15/umbraco-cms/extending/packages/good-practice-and-defaults.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ The `/umbraco/Licenses` folder does not exist on a fresh installation of Umbraco
46
46
47
47
## Operating system considerations
48
48
49
-
Umbraco (version 9 and up) is an ASP.NET Core application and can be run on multiple operating systems (Windows, Linux and macOS). When developing packages there are a few things you should be aware of for your package to run on all possible operating systems.
49
+
Umbraco a .NET application and can be run on multiple operating systems (Windows, Linux and macOS). When developing packages there are a few things you should be aware of for your package to run on all possible operating systems.
50
50
51
51
### Case sensitivity
52
52
@@ -69,7 +69,7 @@ Some folders within Umbraco will already exist for all installations. If you acc
Copy file name to clipboardExpand all lines: 15/umbraco-cms/extending/packages/installing-and-uninstalling-packages.md
+1-43Lines changed: 1 addition & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,19 @@
1
1
---
2
2
description: >-
3
3
The process of installing and, in turn, uninstalling packages in your Umbraco
4
-
CMS website depends on the version and package type.
4
+
CMS website.
5
5
---
6
6
7
7
# Installing and Uninstalling Packages
8
8
9
9
This article will cover the process of installing as well as uninstalling packages from your Umbraco CMS website.
10
10
11
-
As the article will cover both NuGet packages and zip file packages, it is important to know the distinction:
12
-
13
-
***NuGet packages**: Modern Umbraco (Umbraco 10+) and Legacy Umbraco (Umbraco 8 and earlier versions).
14
-
***Package zip files**: Legacy Umbraco (Umbraco 8 and earlier versions) only.
15
-
16
-
Learn more about the different types of packages in the [Types of packages](types-of-packages.md) article.
17
-
18
11
## Installing packages
19
12
20
13
In the Umbraco Backoffice, you will find a **Packages** section that displays the [Umbraco Marketplace](https://marketplace.umbraco.com/). From here you can browse all community-made as well as official Umbraco packages for the Umbraco CMS.
Package zip files are only available for Umbraco 8 or earlier versions.
56
-
{% endhint %}
57
-
58
-
Once you have downloaded an Umbraco package zip file, you can install it in the Umbraco backoffice by following the steps below:
59
-
60
-
* Navigate to the **Packages** section.
61
-
* Select **Install local** on the top-right side of the page.
62
-
* Drag'n drop the package onto the page or use the file explorer to select the package zip file.
63
-
* Accept terms of use to confirm the package installation.
64
-
65
-
The package will be installed and any necessary reboots of the site will be initiated.
66
-
67
-
You can also install packages directly when browsing the packages in the Umbraco backoffice. This is usually preferred in order to ensure that the package is compatible with the Umbraco CMS version used.
68
-
69
-
* Navigate to the specific package you want to install.
70
-
* Click **Install package** in the right-hand side of the page.
71
-
* Confirm the installation.
72
-
73
-
The package will be install and the site will be rebooted.
74
-
{% endtab %}
75
-
{% endtabs %}
76
42
77
43
## Uninstalling packages
78
44
@@ -94,14 +60,6 @@ To uninstall a package, either run a command or use the NuGet Package Manager in
94
60
95
61

96
62
97
-
{% hint style="info" %}
98
-
If you are using Umbraco 8 or an earlier version you uninstall the packages directly from the **Packages** section of the Umbraco backoffice.
99
-
100
-
1. Navigate to the **Installed** tab in the **Packages** section.
101
-
2. Click **Uninstall package** next to the package you want to uninstall.
102
-
3. Confirm that action by checking **Confirm package uninstall**.
103
-
{% endhint %}
104
-
105
63
It is recommended to clean the solution after removing any package. This can be done by right-clicking the project in Visual Studio and choosing the _Clean_ option, or using the `dotnet clean` command.
106
64
107
65

0 commit comments