Babel.Compiler.Compiler.PrintUsage C# (CSharp) Method

PrintUsage() protected method

protected PrintUsage ( ) : void
return void
        protected virtual void PrintUsage()
        {
            Console.Write(
            "usage: babelc.exe [options] source-files\n" +
            "   -lib:PATH1,PATH2   Adds the paths to the assembly link path\n" +
            "   -nostdlib          Does not load core libraries\n" +
            "   -out:FNAME         Specifies output file\n" +
            "   -reference:ASS     References the specified assembly (-r:ASS)\n" +
            "   -target:KIND       Specifies the target (KIND is one of: exe, winexe,\n" +
            "                      library, module), (short: -t:)\n" +
            "   -version           Prints the version\n" +
            "   -help              Prints this message\n");
        }