Jonny Bekkum

Results 33 comments of Jonny Bekkum

In terms of code I would have some specific code in each target project. Like for ASP.NET Core use HttpContext and for ASP.NET MVC use HttpContextBase. For ASP.NET Core I...

My proof-of-concept is not in a published branch. The fork at https://github.com/jonnybee/i18n does not contain these changes. Support for i18n in ASP.NET Core needs some careful design and guidance as...

In Your solution you could create Your own PostBuild exe file and add items from whatever Source you like (config file, database table,... ) Essentially all you need is :...

When you build dynamic forms/html in javascript on the client and needs localizable labels, buttons, headin etc and we do not want to localize the javascripts themselves. The javascript may...

Well - The issue here is how to write a regex that can recursively parse tokens or a rewrite of the parsing method in I18N. Which is the reason this...

The first Quick start sample clearly indicates that a boolean parameter can be specified as true or false. See: https://github.com/commandlineparser/commandline But that's just not how it works.

This is from the README.MD: > C# Quick Start: using System; using CommandLine; namespace QuickStart { class Program { public class Options { [Option('v', "verbose", Required = false, HelpText =...

Just to clarify the issue - with compiled program above, the C# Quick Start from README.MD: QuickStart.exe ==> Current Arguments: -v False **QuickStart.exe -v False ==> Verbose output enabled. Current...

No, to my knowledge I did not change the API. I did change the interception to occcur on CSpace (from SSpace). Could you provide me with a gist or sample...

@maumar @ajcvickers Other properties of type int is deserialized OK - but when named Id will throw the ArgumentException. Could it be that **Id** is considered Key by convention for...