Lee Timmins

Results 21 comments of Lee Timmins

When I try a build after upgrading to 2.4.3. I get the error: "Program does not contain a static 'Main' method suitable for an entry point" I'm not sure if...

@jeffreyrivor I have the same issue where if you suppress link generation for the non-locale route/selector then it will generate a blank string for non localized urls. There doesn't seem...

Like @jeremycook I believe this issue shows up when using ASP.NET's unobtrusive validation. The unobtrusive validation library calls the validate method passing in options which overrides the defaults. Therefore I...

Just a follow up that I had to modify my converter to feed in the value types. For example: ```cs public class MyIDictionaryGenericConverter : IDictionaryConverter { private readonly Type[] _valueTypes;...

@tommarien it's been a while since I looked at this. However I'll show you how I got this to work as it might help: ``` public virtual bool MigrateUp() {...

Please could you make sure this is addressed in the next version. We basically need some way of adding a route value (which can be overridden) to all URLs generated...

@rwasef1830 thanks but the only way to override the tag helpers I believe is to create your own custom tag helper, which all gets a bit messy.

@rwasef1830 thanks much appreciated. What part of the `LinkGenerator` would I need to override to add my own custom defaults?

Thanks @rwasef1830, I hadn't really looked at how the `LinkGenerator` was implemented much before. However I have noticed that it is marked as internal. I'm not sure how comfortable I...

@barnhill have you got an example of how to output this to a FileContentResult without the reliance on System.Drawing?