diff --git a/.gitignore b/.gitignore index 1f14485237..5b47e32794 100644 --- a/.gitignore +++ b/.gitignore @@ -303,4 +303,4 @@ modules/virtual-file-explorer/app/Volo.Abp.VirtualFileExplorer.DemoApp/Logs/ /templates/app/aspnet-core/src/MyCompanyName.MyProjectName.HttpApi.HostWithIds/package-lock.json /templates/app/angular/package-lock.json /modules/client-simulation/demo/Volo.ClientSimulation.Demo/package-lock.json - +abp-build-config.json diff --git a/abp-build-config.json b/abp-build-config.json deleted file mode 100644 index 8375fc4660..0000000000 --- a/abp-build-config.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "Name": "abp", - "RootPath": "D:\\GitHub\\abp" -} \ No newline at end of file diff --git a/docs/en/CLI.md b/docs/en/CLI.md index 61474a7095..b2f93ea2ef 100644 --- a/docs/en/CLI.md +++ b/docs/en/CLI.md @@ -374,11 +374,17 @@ Usage: abp build [options] ```` +Example: + +``` +abp build --build-name "prod" --dotnet-build-arguments "\"--no-dependencies\"" +``` + #### Options * ```--working-directory``` or ```-w```: 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. * ```--build-name``` or ```-n```: Specifies a name for the build. This option is useful when same repository is used for more than one different builds. -* ```--dotnet-build-arguments``` or ```-a```: Arguments to pass ```dotnet build``` when building project files. +* ```--dotnet-build-arguments``` or ```-a```: Arguments to pass ```dotnet build``` when building project files. This parameter must be passed like ```"\"{params}\""``` . * ```--force``` or ```-f```: Forces to build projects even they are not changed from the last successful build. For more details, see [build command documentation](CLI-BuildCommand.md).