Brian Chavez

Results 114 comments of Brian Chavez

Hey @monoblaine , I tired removing the `Debug` and `Release` in the output path, but I'm still getting unrecognized issues in `RazorGenerator`. Below is an example of using string interpolation:...

@Danielku15 Unfortunately, I tired all the steps in both links and it did not work for me. Maybe I missed something, but I could not get it to work. :(

I needed **RazorGenerator** to work in my **.NET Core** and **.NET Standard** projects too. I normally use **RazorGenerator** for generating things like email templates, not for pre-compilation of **MVC** project...

FWIW, just to add some context: an issue recently came up in Bogus to support C# 9 record types here: https://github.com/bchavez/Bogus/issues/334. Currently, given a positional record of type `T`, the...

One thing I love doing with enum-ish strings in **C#** is to emulate **Ruby** symbols like this: ```csharp namespace StringSymbols { public static class OSPlatform { public const string FreeBSD...

Hey @ChristoWolf, if you have a chance or any free time; Could you double-check this PR and see if we have sufficient unit test coverage for edge cases? I'd like...

Some options for this: * Pulling `tzdata`: https://www.npmjs.com/package/tzdata * Or as a workaround, sourcing the same information from NodaTime: ```csharp using NodaTime; void Main() { var faker = new Faker();...

Hi. Could you help me understand why this is a problem?

Going through the issues list and cleaning up. Gonna mark this as a duplicate of #499 . Please subscribe to issue #499 for updates.

Great find. Thank you for bringing this to my attention. I agree this should be fixed. The compiler already does the enforcement of the `[Obsolete("", true)]` object property by failing...