Exemplo n.º 1
0
 internal static void GenerateAndOpenSolution(BuildConfiguration buildConfig, string buildTargetName)
 {
     using (var progress = new BuildProgress(k_WindowTitle, "Please wait..."))
     {
         GenerateSolution(buildConfig, progress, buildTargetName);
         GenerateDotsSolutionView.RunBeeProjectFiles();
         OpenSolution();
     }
 }
Exemplo n.º 2
0
        void OnEnable()
        {
            // Check whether there is already a serialized view state (state
            // that survived assembly reloading)
            if (m_TreeViewState == null)
            {
                m_TreeViewState = new TreeViewState();
            }

            RebuildGuidList();
            RebuildAlreadyGeneratedConfigList();

            m_GenerateDotsSolutionView = new GenerateDotsSolutionView(m_TreeViewState);
        }
Exemplo n.º 3
0
 static void GenerateAndOpenSolution()
 {
     GenerateDotsSolutionView.RunBeeProjectFiles();
     OpenSolution();
 }