コード例 #1
0
        protected override string GenerateResponseFileCommands()
        {
            var commandLine = new XSharpCommandLineBuilder(useCRLF);

            this.AddResponseFileCommands(commandLine);
            return(commandLine.ToString());
        }
コード例 #2
0
        protected override string GenerateCommandLineCommands()
        {
            var commandLine = new XSharpCommandLineBuilder(false);

            commandLine.AppendWhenTrue("/noconfig", base.Bag, nameof(NoConfig));
            commandLine.AppendWhenTrue("/shared", base.Bag, nameof(UseSharedCompilation));
            return(commandLine.ToString());
        }
コード例 #3
0
ファイル: Xsc.cs プロジェクト: X-Sharp/XSharpPublic
 protected override string GenerateResponseFileCommands()
 {
     CommandLineBuilderExtension commandLine = new XSharpCommandLineBuilder();
     this.AddResponseFileCommands(commandLine);
     return commandLine.ToString();
 }
コード例 #4
0
ファイル: Xsc.cs プロジェクト: X-Sharp/XSharpPublic
 protected override string GenerateCommandLineCommands()
 {
     var commandLine = new XSharpCommandLineBuilder();
     commandLine.AppendWhenTrue("/noconfig", base.Bag, nameof(NoConfig));
     commandLine.AppendWhenTrue("/shared", base.Bag, nameof(UseSharedCompilation));
     return commandLine.ToString();
 }