summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.Xamlc
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-12-05 13:31:31 +0100
committerGitHub <noreply@github.com>2016-12-05 13:31:31 +0100
commit1a5bead2f2e24cc16da23753eaf0882d38d54ea1 (patch)
tree2fb4bf607ca11d9ed5163ed329796ca651054a6a /Xamarin.Forms.Xaml.Xamlc
parent3692786c3a0f9ba01ffe9516caa624a018ac885a (diff)
downloadxamarin-forms-1a5bead2f2e24cc16da23753eaf0882d38d54ea1.tar.gz
xamarin-forms-1a5bead2f2e24cc16da23753eaf0882d38d54ea1.tar.bz2
xamarin-forms-1a5bead2f2e24cc16da23753eaf0882d38d54ea1.zip
[XamlC] drop ICSharpCode.Decompiler (#586)
* [XamlC] drop ICSharpCode.Decompiler * update nuspec * fix typo
Diffstat (limited to 'Xamarin.Forms.Xaml.Xamlc')
-rw-r--r--Xamarin.Forms.Xaml.Xamlc/Xamlc.cs5
1 files changed, 1 insertions, 4 deletions
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<string> 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);
}