示例#1
0
 private void DrawReadyToStart()
 {
     GUILayout.Label("You can start live preview backend");
     EditorGUILayout.BeginHorizontal();
     if (GUILayout.Button("Start live preview backend"))
     {
         previewBackendProcess = LivePreviewProcessHelper.StartLivePreviewBackend(
             OutputFolder,
             GetExecutablePath());
     }
     if (GUILayout.Button("Rebuild"))
     {
         DotnetHelpers.BuildLivePreviewBackend(ProjectFolder, OutputFolder, selectedBuildPack);
     }
     EditorGUILayout.EndHorizontal();
 }