最新のStudio2025.0.157でWindowsレガシを変換せずに開く方法はないですか?

Studio 2025.0.157でWindowsレガシ版のxamlファイルを開こうとすると
「Windowsに変換」が表示され、無視することができません。。

急ぎの作業があり、変換・検証している余裕がないです。
どうしたらよいでしょうか?

Hi,

  1. Change the Project Profile Manually
  2. Edit the Project File (project.json)
  3. “runtime”: “Legacy”

こんにちは

仕様のようなので、できないと思います。

こんにちは。
project.jsonを見ました。"runtimeOptions"はありますが、“runtime”はありませんでした。
“runtime”: “Legacy” を書き加えればいいでしょうか?

{
“name”: “払出手入力”,
“projectId”: “04f45ce2-b37d-42e8-8b28-b3972a167af7”,
“description”: “空のプロジェクト”,
“main”: “設計工数登録(実行版)20190731.xaml”,
“dependencies”: {
“UiPath.Excel.Activities”: “[2.6.3]”,
“UiPath.Mail.Activities”: “[1.6.0]”,
“UiPath.System.Activities”: “[19.8.0]”,
“UiPath.Terminal.Activities”: “[1.3.3]”,
“UiPath.UIAutomation.Activities”: “[19.8.0-ce]”
},
“webServices”: ,
“entitiesStores”: ,
“schemaVersion”: “4.0”,
“studioVersion”: “19.8.0.0”,
“projectVersion”: “1.0.0”,
“runtimeOptions”: {
“autoDispose”: false,
“netFrameworkLazyLoading”: false,
“isPausable”: true,
“isAttended”: false,
“requiresUserInteraction”: true,
“supportsPersistence”: false,
“workflowSerialization”: “DataContract”,
“excludedLoggedData”: [
“Private:*”,
password
],
“executionType”: “Workflow”,
“readyForPiP”: false,
“startsInPiP”: false,
“mustRestoreAllDependencies”: false,
“pipType”: “ChildSession”
},
“designOptions”: {
“projectProfile”: “Developement”,
“outputType”: “Process”,
“libraryOptions”: {
“includeOriginalXaml”: false,
“privateWorkflows”:
},
“processOptions”: {
“ignoredFiles”:
},
“fileInfoCollection”: ,
“modernBehavior”: false
},
“expressionLanguage”: “VisualBasic”,
“isTemplate”: false,
“templateProjectData”: {},
“publishData”: {},
“targetFramework”: “Legacy”
}

こんにちは。

変換は必須ということなんですね。。。

試しに変換してみたところ、.NET 5.0のインストール必要と表示されエラーとなりましたが
これは想定内のエラーでしょうか?

Windowsプロジェクトは.Net core ベースなので必要と思われます。
以下も参考になるかもしれません。

最初のPOSTの補足になりますが、既に削除済みとしてドキュメント化されていました。

ありがとうございました。

地道に変換作業を続けていくことにします。。。。