mirror of https://github.com/abpframework/abp.git
committed by
GitHub
9 changed files with 89 additions and 6 deletions
@ -0,0 +1,25 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Volo.Abp.Cli.ProjectBuilding.Building |
|||
{ |
|||
public enum MobileApp |
|||
{ |
|||
None, |
|||
ReactNative |
|||
} |
|||
|
|||
public static class MobileAppExtensions{ |
|||
public static string GetFolderName(this MobileApp mobileApp) |
|||
{ |
|||
switch (mobileApp) |
|||
{ |
|||
case MobileApp.ReactNative: |
|||
return "react-native"; |
|||
default: |
|||
return null; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue