Exemplo n.º 1
0
        void BuildCurrentToolStripMenuItemClick(object sender, EventArgs e)
        {
            SaveAll();
            BuildSnippetCommand buildSnippet = new BuildSnippetCommand(ProjectService.CurrentProject);

            buildSnippet.Run();
        }
Exemplo n.º 2
0
        void BuildCurrentProject()
        {
            SaveAll();
            var buildSnippet = new BuildSnippetCommand(ProjectService.CurrentProject);

            buildSnippet.Run();
        }