summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-03-22 13:02:25 -0700
committerJason Smith <jason.smith@xamarin.com>2016-03-22 16:13:41 -0700
commit17fdde66d94155fc62a034fa6658995bef6fd6e5 (patch)
treeb5e5073a2a7b15cdbe826faa5c763e270a505729 /Xamarin.Forms.Xaml.Xamlc/Xamlc.cs
downloadxamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.gz
xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.bz2
xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.zip
Initial import
Diffstat (limited to 'Xamarin.Forms.Xaml.Xamlc/Xamlc.cs')
-rw-r--r--Xamarin.Forms.Xaml.Xamlc/Xamlc.cs69
1 files changed, 69 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs b/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs
new file mode 100644
index 00000000..b2fa172b
--- /dev/null
+++ b/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs
@@ -0,0 +1,69 @@
+using System;
+using System.Collections.Generic;
+using Mono.Options;
+using Xamarin.Forms.Build.Tasks;
+
+namespace Xamarin.Forms.Xaml
+{
+ class Xamlc
+ {
+ static readonly string help_string = "xamlc.exe - a utility for compiling XAML into IL.\n" +
+ "xamlc.exe assembly\n\n";
+
+ public static void Main(string[] args)
+ {
+ bool help = false;
+ int verbosity = 1;
+ bool keep = false;
+ bool optimize = false;
+ bool decompile = false;
+ string paths = null;
+ string refs = null;
+ var p = new OptionSet
+ {
+ { "h|?|help", "Print this help message", v => help = true },
+ { "v=|verbosity=", "0 is quiet, 1 is normal, 2 is verbose", v => verbosity = Int32.Parse(v) },
+ { "o|optimize", "Optimize generated IL", v => optimize = true },
+ { "keep", "do not strip compiled embedded xaml", v => keep = true },
+ { "p=|paths=|dependencypaths=", "look for dependencies in (comma separated) list of paths", v => paths = v },
+ { "r=", "referencepath", v => refs = v },
+ { "d|decompile", v => decompile = true }
+ };
+
+ if (help || args.Length < 1)
+ {
+ ShowHelp(p);
+ Environment.Exit(0);
+ }
+ List<string> extra = null;
+ try
+ {
+ extra = p.Parse(args);
+ }
+ catch (OptionException)
+ {
+ Console.WriteLine("Type `xamlc --help' for more information.");
+ return;
+ }
+
+ if (extra.Count == 0)
+ {
+ if (verbosity > 0)
+ {
+ Console.WriteLine("assembly missing");
+ ShowHelp(p);
+ }
+ Environment.Exit(0);
+ }
+
+ var assembly = extra[0];
+ XamlCTask.Compile(assembly, verbosity, keep, optimize, paths, refs, decompile);
+ }
+
+ static void ShowHelp(OptionSet ops)
+ {
+ Console.WriteLine(help_string);
+ ops.WriteOptionDescriptions(Console.Out);
+ }
+ }
+} \ No newline at end of file