uipath-cli
latest
false
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- UiPath for Coding Agents
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip docsai
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-workflow-examples
- パッケージ化
- 元に戻す
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- UIA
- UIP トレース
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath CLI ユーザー ガイド
uip rpa-legacy package は、従来の uipcli パッケージャーを直接使用して、RPA プロジェクトをデプロイ可能な.nupkgにパッケージ化します。レガシのみの機能に依存しない新しいパイプラインの場合は、クロスプラットフォーム (uip rpa pack ) を優先します。クロスプラットフォーム パイプラインは、同じプロジェクトを受け入れ、Linux、macOS、Windows で同等の NuGet パッケージを生成します。
Windows のみ — 概要 の警告を参照してください。
概要
uip rpa-legacy package <project-path> -o <output-dir> [options]
uip rpa-legacy package <project-path> -o <output-dir> [options]
<project-path>(必須) — RPA プロジェクトまたはproject.jsonへのパスです。
オプション
| フラグ | 説明 |
|---|---|
-o, --output <path> | 生成された .nupkgの出力ディレクトリです。 |
-v, --version <version> | パッケージ バージョン。 |
--auto-version | パッケージ バージョンを自動生成 |
--output-type <type> | 出力の種類 (Process、 Library、 Tests、 Objects) を強制します。 |
--split-output | 出力をランタイム ライブラリとデザイン ライブラリに分割します。 |
--repository-url <url> | ソース リポジトリの URL です。 |
--repository-commit <sha> | ソース リポジトリのコミット SHA。 |
--repository-branch <branch> | ソース リポジトリ ブランチ。 |
--repository-type <type> | ソース リポジトリの種類。 |
--project-url <url> | Automation Hub プロジェクトの URL。 |
--release-notes <text> | パッケージのリリース ノート |
--timeout <seconds> | 操作のタイムアウト (秒単位)。 |
例
# Pack a project to ./out with an explicit version
uip rpa-legacy package ./MyProject -o ./out --version 1.4.0
# Pack a library with auto-versioning and split runtime/design output
uip rpa-legacy package ./MyLibrary -o ./out \
--output-type Library --auto-version --split-output
# Pack with VCS metadata embedded for traceability
uip rpa-legacy package ./MyProject -o ./out \
--version 1.4.0 \
--repository-url https://github.com/acme/automations \
--repository-branch main \
--repository-commit a1b2c3d4e5f6 \
--release-notes "Adds invoice routing rules."
# Pack a project to ./out with an explicit version
uip rpa-legacy package ./MyProject -o ./out --version 1.4.0
# Pack a library with auto-versioning and split runtime/design output
uip rpa-legacy package ./MyLibrary -o ./out \
--output-type Library --auto-version --split-output
# Pack with VCS metadata embedded for traceability
uip rpa-legacy package ./MyProject -o ./out \
--version 1.4.0 \
--repository-url https://github.com/acme/automations \
--repository-branch main \
--repository-commit a1b2c3d4e5f6 \
--release-notes "Adds invoice routing rules."
関連
uip rpa-legacy validate— パッケージ化する前に検証します。uip rpa-legacy debug— パッケージ化する前にワークフローをデバッグします。uip rpa pack— クロスプラットフォームパッケージャー。非レガシ プロジェクトに適しています。uip rpa-legacy— ツールの概要。