Skip to content

Commit

Permalink
Merge pull request #16 from UniToolsTeam/feature/0.0.10_fix
Browse files Browse the repository at this point in the history
Editor part fixes+version bump
  • Loading branch information
Rinal authored Jun 8, 2022
2 parents a29c1f2 + a372295 commit 876f35e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
7 changes: 0 additions & 7 deletions Editor/Platforms/iOS/Post/Archive/Archive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@

namespace UniTools.Build
{
/// <summary>
/// Creates iOS archive from the xCode project using CLI tools
/// </summary>
[CreateAssetMenu(
fileName = nameof(Archive),
menuName = MenuPaths.IOS + nameof(Archive)
)]
public abstract class Archive : IosPostBuildStep
{
[SerializeField] private PathProperty m_projectPath = new PathProperty("Unity-iPhone.xcodeproj");
Expand Down
10 changes: 10 additions & 0 deletions Editor/Platforms/iOS/Post/Archive/ArchiveProject.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
using System.Threading.Tasks;
using UnityEngine;

namespace UniTools.Build
{
/// <summary>
/// Creates iOS archive from the xCode project using CLI tools
/// </summary>
[CreateAssetMenu(
fileName = nameof(ArchiveProject),
menuName = MenuPaths.IOS + nameof(ArchiveProject)
)]
public sealed class ArchiveProject : Archive
{
protected override string CommandStart => "project";
Expand Down
10 changes: 10 additions & 0 deletions Editor/Platforms/iOS/Post/Archive/ArchiveWorkspace.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
using System.Threading.Tasks;
using UnityEngine;

namespace UniTools.Build
{
/// <summary>
/// Creates iOS archive from the xCode workspace using CLI tools
/// </summary>
[CreateAssetMenu(
fileName = nameof(ArchiveWorkspace),
menuName = MenuPaths.IOS + nameof(ArchiveWorkspace)
)]
public sealed class ArchiveWorkspace: Archive
{
protected override string CommandStart => "workspace";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "UniTools.Build",
"name": "com.unitools.build",
"version": "0.0.9-preview",
"version": "0.0.10-preview",
"unity": "2019.1",
"description": "Customizable Build Pipeline for Unity3D",
"keywords": [
Expand Down

0 comments on commit 876f35e

Please sign in to comment.