|
|
@ -2,9 +2,10 @@ The https://github.com/tinymce/tinymce-blazor[Official {productname} Blazor comp |
|
|
|
|
|
|
|
Select from the following guides: |
|
|
|
|
|
|
|
* <<usingvisualstudio, Using Visual Studio>> |
|
|
|
* <<usingacommandpromptorterminal, Using a command prompt or terminal>> |
|
|
|
* xref:usingvisualstudio[Using Visual Studio] |
|
|
|
* xref:usingacommandpromptorterminal[Using a command prompt or terminal] |
|
|
|
|
|
|
|
[[usingvisualstudio]] |
|
|
|
== Using Visual Studio |
|
|
|
|
|
|
|
=== Prerequisites |
|
|
@ -26,22 +27,21 @@ This procedure requires: |
|
|
|
Install-Package TinyMCE.Blazor |
|
|
|
---- |
|
|
|
|
|
|
|
\{% if productSource == "package-manager" %} |
|
|
|
ifeval::["{productSource}" == "package-manager"] |
|
|
|
|
|
|
|
[arabic] |
|
|
|
. Use the NuGet package manager console to install the `+{productname}+` package, such as: |
|
|
|
. Use the NuGet package manager console to install the `{productname}` package, such as: |
|
|
|
+ |
|
|
|
[source,sh] |
|
|
|
---- |
|
|
|
Install-Package TinyMCE |
|
|
|
---- |
|
|
|
|
|
|
|
\{% endif %} |
|
|
|
endif::[] |
|
|
|
include::partial$integrations/blazor-postinstall.adoc[] |
|
|
|
|
|
|
|
[arabic] |
|
|
|
. To test the application, run the application by pressing *Ctrl+F5*. |
|
|
|
|
|
|
|
[[usingacommandpromptorterminal]] |
|
|
|
== Using a command prompt or terminal |
|
|
|
|
|
|
|
=== Prerequisites |
|
|
@ -72,20 +72,18 @@ cd BlazorApp |
|
|
|
dotnet add package TinyMCE.Blazor |
|
|
|
---- |
|
|
|
|
|
|
|
\{% if productSource == "package-manager" %} |
|
|
|
ifeval::["{productSource}" == "package-manager"] |
|
|
|
|
|
|
|
[arabic] |
|
|
|
. Install the `+{productname}+` package, such as: |
|
|
|
. Install the `{productname}` package, such as: |
|
|
|
+ |
|
|
|
[source,sh] |
|
|
|
---- |
|
|
|
dotnet add package TinyMCE |
|
|
|
---- |
|
|
|
|
|
|
|
\{% endif %} |
|
|
|
endif::[] |
|
|
|
include::partial$integrations/blazor-postinstall.adoc[] |
|
|
|
|
|
|
|
[arabic] |
|
|
|
. Test the application using the .NET development server. |
|
|
|
* To start the development server, in the project's root directory, run: |
|
|
|
+ |
|
|
|