From 638dbcf75e8fa467edfad7daafbe6fe6fa71e1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Fri, 23 Apr 2021 02:49:24 +0300 Subject: [PATCH] Remove build command --- docs/en/CLI.md | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/docs/en/CLI.md b/docs/en/CLI.md index 2dda0b6ae5..f2e7df219b 100644 --- a/docs/en/CLI.md +++ b/docs/en/CLI.md @@ -41,7 +41,6 @@ Here, the list of all available commands before explaining their details: * **`translate`**: Simplifies to translate localization files when you have multiple JSON [localization](Localization.md) files in a source control repository. * **`login`**: Authenticates on your computer with your [abp.io](https://abp.io/) username and password. * **`logout`**: Logouts from your computer if you've authenticated before. -* **`build`**: Builds a GIT repository and depending repositories or a single .NET solution. * **`bundle`**: Generates script and style references for an ABP Blazor project. ### help @@ -407,25 +406,6 @@ Logs you out by removing the session token from your computer. abp logout ``` -### build - -This command builds a GIT repository and it's depending repositories or a single .NET solution File. In order ```build``` command to work, its **executing directory** or passed ```--working-directory``` parameter's directory must contain one of; - -* A .NET solution file (*.sln) -* abp-build-config.json (suggested to add this to .gitignore) - -Usage: - -````bash -abp build [options] -```` - -Example: - -``` -abp build --build-name "prod" --dotnet-build-arguments "\"--no-dependencies\"" -``` - #### Options * ```--working-directory``` or ```-wd```: Specifies the working directory. This option is useful when the command is executed outside of a GIT repository or when executing directory doesn't contain a .NET solution file. @@ -436,9 +416,9 @@ abp build --build-name "prod" --dotnet-build-arguments "\"--no-dependencies\"" For more details, see [build command documentation](CLI-BuildCommand.md). -#### bundle +### bundle -This command generates script and style references for an ABP Blazor project and updates the **index.html** file. It helps developers to manage dependencies required by ABP modules easily. In order ```bundle``` command to work, its **executing directory** or passed ```--working-directory``` parameter's directory must contain a Blazor project file(*.csproj). +This command generates script and style references for an ABP Blazor WebAssembly project and updates the **index.html** file. It helps developers to manage dependencies required by ABP modules easily. In order ```bundle``` command to work, its **executing directory** or passed ```--working-directory``` parameter's directory must contain a Blazor project file(*.csproj). Usage: