From 1a5bead2f2e24cc16da23753eaf0882d38d54ea1 Mon Sep 17 00:00:00 2001 From: Stephane Delcroix Date: Mon, 5 Dec 2016 13:31:31 +0100 Subject: [XamlC] drop ICSharpCode.Decompiler (#586) * [XamlC] drop ICSharpCode.Decompiler * update nuspec * fix typo --- Xamarin.Forms.Xaml.Xamlc/Xamlc.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Xamarin.Forms.Xaml.Xamlc') diff --git a/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs b/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs index 5a42fa02..ec99b71a 100644 --- a/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs +++ b/Xamarin.Forms.Xaml.Xamlc/Xamlc.cs @@ -16,7 +16,6 @@ namespace Xamarin.Forms.Xaml int verbosity = 1; bool keep = false; bool optimize = false; - bool decompile = false; string paths = null; string refs = null; List extra = null; @@ -29,7 +28,6 @@ namespace Xamarin.Forms.Xaml { "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) @@ -64,8 +62,7 @@ namespace Xamarin.Forms.Xaml KeepXamlResources = keep, OptimizeIL = optimize, DependencyPaths = paths, - ReferencePath = refs, - OutputGeneratedILAsCode=decompile, + ReferencePath = refs }; xamlc.Execute(null); } -- cgit v1.2.3