Add a quick "custom" build command by krisrok · Pull Request #199 · unitycoder/UnityLauncherPro · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions UnityLauncherPro/MainWindow.xaml
6 changes: 6 additions & 0 deletions UnityLauncherPro/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3226,6 +3226,12 @@ private void MenuBatchBuildIOS_Click(object sender, RoutedEventArgs e)
Tools.BuildProject(proj, Platform.iOS);
}

private void MenuBatchBuildCustom_Click(object sender, RoutedEventArgs e)
{
var proj = GetSelectedProject();
Tools.BuildProjectCustom(proj);
}

private void ChkCheckPlasticBranch_Checked(object sender, RoutedEventArgs e)
{
if (this.IsActive == false) return; // dont run code on window init
Expand Down
29 changes: 28 additions & 1 deletion UnityLauncherPro/Tools.cs