Skip to content

Commit

Permalink
[Feature]: Reordered menu items for the unity package
Browse files Browse the repository at this point in the history
  • Loading branch information
2004seraph committed Feb 9, 2023
1 parent 3ffae17 commit 0909377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions software.contraband.cyanci/Editor/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ private static void RunBatchCommand(string cmd)
process.Start();
}

[MenuItem("CyanCI/Build Current")]
[MenuItem("CyanCI/Debug/Client/Build Current", priority = 2)]
public static void BuildThis()
{
RunBatchCommand(
Expand All @@ -36,7 +36,7 @@ public static void BuildThis()
);
}

[MenuItem("CyanCI/Build Last Commit")]
[MenuItem("CyanCI/Build Last Commit", priority = 1)]
public static void InvokeCICommit()
{
RunBatchCommand(
Expand Down Expand Up @@ -67,7 +67,7 @@ static BuildPlayerOptions GetBuildPlayerOptions(
);
}

[MenuItem("CyanCI/Local/Build Current Windows Config")]
[MenuItem("CyanCI/Debug/Server/Build Current Windows Config", priority = 3)]
public static void BuildWin32()
{
BuildPlayerOptions options = GetBuildPlayerOptions();
Expand Down

0 comments on commit 0909377

Please sign in to comment.