Co-authored-by: Ori Levari <orlevari@microsoft.com>
This commit is contained in:
Ori Levari 2021-01-12 20:28:44 -08:00 коммит произвёл GitHub
Родитель 7b8d947c2e
Коммит ca13ec55df
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -112,6 +112,7 @@ Alternatively, you can build the app from source following the instructions belo
2. `cd Tools/WinMLDashboard`
3. Run `Git submodule update --init --recursive` to update Netron.
4. Run `yarn lock-netron-deps` to execute necessary modifications to Netron dependency versions.
4. Run `yarn` to download dependencies.
5. Then, run `yarn electron-prod` to build and start the desktop application, which will launch the Dashboard.

Просмотреть файл

@ -18,7 +18,8 @@
"build-cpp": "msbuild src/cpp/DebugRunner.sln",
"nuget-restore-cpp": "nuget restore src/cpp/DebugRunner.sln",
"electron-dev": "electron . http://localhost:3000",
"electron-prod": "yarn nuget-restore-cpp && yarn build-cpp && yarn build-electron && electron ."
"electron-prod": "yarn nuget-restore-cpp && yarn build-cpp && yarn build-electron && electron .",
"lock-netron-deps": "cd deps/Netron && yarn upgrade d3@5.16.0"
},
"build": {
"appId": "com.microsoft.dashboard.winml",