Jeremy Morton

Results 4 comments of Jeremy Morton

When creating the Parser, alter the settings to turn off case sensitivity. ``` var parser = new Parser(settings => { settings.CaseSensitive = false; }); ```

This is especially common when you have integer options and values, since it can be common to want to specify 0 or 1 for both an option and a value.

``` namespace Sample { /// /// A static class. /// public static class Class1 { /// /// Returns a representing something. /// public static string MyMethod() { return "something"; }...

I have discovered that the Platform that shows up in the sln file as `x64` is actually `x86_64` in the premake lua files, so I was able to get it...