Ejemplo n.º 1
0
        private void RegenerateFontsClicked(object sender, RoutedEventArgs e)
        {
            // --rebuildfonts "C:\Users\Victor\Documents\TestProject2\TestProject2\Content\GumProject\GumProject.gumx"
            var gumFileName = AppState.Self.GumProjectSave.FullFileName;

            var executable = FileAssociation.GetExecFileAssociatedToExtension("gumx");

            if (string.IsNullOrEmpty(executable))
            {
                GlueCommands.Self.DialogCommands.ShowMessageBox(
                    "Could not find file association for Gum files - you need to set this up before performing this operation");
            }
            else
            {
                var startInfo = new System.Diagnostics.ProcessStartInfo();
                startInfo.Arguments       = $@"--rebuildfonts ""{gumFileName}""";
                startInfo.FileName        = executable;
                startInfo.UseShellExecute = false;

                System.Diagnostics.Process.Start(startInfo);
            }
        }