コード例 #1
0
 /// <summary>
 /// Runs the "flutter pub run build_runner build" command in the current working directory.
 /// The directory must contain a pubspec.yaml file.
 /// </summary>
 public static void BuildBuildRunner(string projectFolder, bool deleteConflictingOutputs = false, bool verbose = false)
 {
     FlutnetShell.RunCommand(
         deleteConflictingOutputs
             ? $"flutter pub run build_runner build --delete-conflicting-outputs"
             : $"flutter pub run build_runner build", projectFolder, verbose);
 }
コード例 #2
0
        /// <summary>
        /// Runs the "flutter create -t package" command to create a Flutter package.
        /// </summary>
        public static DartProject CreatePackage(string workingDir, string name, string description = null, bool verbose = false)
        {
            StringBuilder sb = new StringBuilder();

            sb.Append("flutter create -t package ");
            if (!string.IsNullOrEmpty(description))
            {
                sb.Append($"--description {description.Quoted()} ");
            }
            sb.Append(name);

            FlutnetShell.RunCommand(sb.ToString(), workingDir, verbose);

            return(new DartProject(Path.Combine(workingDir, name)));
        }
コード例 #3
0
        /// <summary>
        /// Runs the "flutter build aar" command to create an Android Archive (AAR)
        /// to be integrated into a native Android application.
        /// </summary>
        public static void BuildAndroidArchive(string projectFolder, FlutterModuleBuildConfig buildConfig, bool verbose = false)
        {
            StringBuilder sb = new StringBuilder();

            sb.Append("flutter build aar ");

            if (buildConfig != FlutterModuleBuildConfig.Default)
            {
                if (!buildConfig.HasFlag(FlutterModuleBuildConfig.Debug))
                {
                    sb.Append("--no-debug ");
                }
                if (!buildConfig.HasFlag(FlutterModuleBuildConfig.Profile))
                {
                    sb.Append("--no-profile ");
                }
                if (!buildConfig.HasFlag(FlutterModuleBuildConfig.Release))
                {
                    sb.Append("--no-release ");
                }
            }

            FlutnetShell.RunCommand(sb.ToString(), projectFolder, verbose);
        }
コード例 #4
0
        /// <summary>
        /// Runs the "flutter --version" command to retrieve the current version of Flutter.
        /// </summary>
        public static FlutterVersion GetVersion(bool verbose = false)
        {
            CommandResult result = FlutnetShell.RunCommand("flutter --version --no-version-check", Environment.CurrentDirectory, verbose);

            FlutterVersion version = new FlutterVersion();

            int index;

            using (StringReader reader = new StringReader(result.StandardOutput))
            {
                string   versionLine = reader.ReadLine();
                string[] parts       = versionLine
                                       .Replace("Flutter", string.Empty, StringComparison.InvariantCultureIgnoreCase)
                                       .Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
                if (parts.Length > 0)
                {
                    version.Version = parts[0].Trim();
                }

                string frameworkRevLine = reader.ReadLine();
                index = frameworkRevLine.IndexOf("revision ", StringComparison.InvariantCultureIgnoreCase);
                if (index != -1)
                {
                    version.FrameworkRev = frameworkRevLine.Substring(index + 9, 10).Trim();
                }

                string engineRevLine = reader.ReadLine();
                index = engineRevLine.IndexOf("revision ", StringComparison.InvariantCultureIgnoreCase);
                if (index != -1)
                {
                    version.EngineRev = engineRevLine.Substring(index + 9).Trim();
                }
            }

            return(version);
        }
コード例 #5
0
 /// <summary>
 /// Runs the "flutter pub get" command to get all the dependencies listed in the pubspec.yaml file
 /// in the current working directory, as well as their transitive dependencies.
 /// </summary>
 public static void GetDependencies(string projectFolder, bool verbose = false)
 {
     FlutnetShell.RunCommand("flutter pub get", projectFolder, verbose);
 }
コード例 #6
0
 /// <summary>
 /// Runs the "flutter pub upgrade" command.
 /// </summary>
 public static void PubUpgrade(string projectFolder, bool verbose = false)
 {
     FlutnetShell.RunCommand("flutter pub upgrade", projectFolder, verbose);
 }
コード例 #7
0
 /// <summary>
 /// Runs the "flutter clean" command to remove all the files produced by the previous build(s), such as the build folder.
 /// </summary>
 public static void Clean(string projectFolder, bool verbose = false)
 {
     FlutnetShell.RunCommand("flutter clean", projectFolder, verbose);
 }