Matthew Dunsdon
Matthew Dunsdon
## Feature request As a contributor, I would like to know the code styling rules upfront, so that I am aware of them before before committing code. I am using...
## Feature request I would like the validation issue messages to be reviewed and improved, so that it is clear what this issue is and it is clear what the...
## Feature request I would like to see validation issue messages that provide better context to problematic constraints, so it is easier to find what part of profile needs changing....
## Feature request Seems like for many validation issue messages the field and constraint type is known, so there is no reason why the messages could not provide a link...
In the blog post [Announcing Xamarin 3](http://blog.xamarin.com/announcing-xamarin-3/), it discusses Xamarin.Forms. > Xamarin.Forms is a new library that enables you to build native UIs for iOS, Android and Windows Phone from...
In a separate issue (#282), @ColinEberhardt raised an interesting point: > Each PropertyCross implementation should show what we believe to be the most effective way of using each framework. Therefore,...
When using kingpin, I was expecting to be able to write the following code to parse a command: ```go args := os.Args[1:] switch kingpin.MustParse(app.Parse(args)) { case initCmd.FullCommand(): initAction(*initCmdArg) // ......