Inheritance: Microsoft.Build.Utilities.CommandLineBuilder
Esempio n. 1
0
        /// <summary>
        /// Return the Response File Command String
        /// </summary>
        /// <returns></returns>
        protected override string GenerateResponseFileCommands()
        {
            string             cmd = base.GenerateResponseFileCommands();
            PackagerCmdBuilder clb = new PackagerCmdBuilder();

            AppendResources(clb);
            cmd += " " + clb.ToString();

            // Output the .bar file's manifest to a file so we can parse it.
            if (PackageManifestOnly)
            {
                cmd += " > localManifest.mf";
            }
            else if (GetTargetFileMap)
            {
                cmd += " > targetFileMap.txt";
            }

            return(cmd);
        }
Esempio n. 2
0
        protected override string GenerateResponseFileCommands()
        {
            string cmd = base.GenerateResponseFileCommands();
            PackagerCmdBuilder clb = new PackagerCmdBuilder();
            AppendResources(clb);
            cmd += " " + clb.ToString();

            // Output the .bar file's manifest to a file so we can parse it.
            if (PackageManifestOnly)
            {
                cmd += " > localManifest.mf";
            }
            else if (GetTargetFileMap)
            {
                cmd += " > targetFileMap.txt";
            }

            return cmd;
        }