Mike Sigsworth

Results 22 comments of Mike Sigsworth

I also ran into this today too. I would like to see 400 errors. For example, when ModelState is invalid a "400 Bad Request" response is returned. In my case,...

I came to report the same thing, except I am using powershell. A quick way to test in powershell is: ``` nvm use 6.10.3; npm install ``` Results in: ```...

Holy smokes, that was a fast response! ```csharp var logger = new LoggerConfiguration() .Enrich.WithThreadId() .Enrich.WithEnvironmentUserName() .WriteTo.Console( outputTemplate: "{Timestamp:s} {Level:u12} [{ThreadId}] [{SourceContext}] [{EnvironmentUserName}]{NewLine}{Message}{NewLine}---------------{NewLine}", theme: AnsiConsoleTheme.Code) .CreateLogger(); ```

Here's the details on my VS Installation. It's the most up to date version of 2017. Microsoft Visual Studio Enterprise 2017 Version 15.9.5 VisualStudio.15.Release/15.9.5+28307.280 Microsoft .NET Framework Version 4.7.03056 Installed...

Oh yeah, I am using the Nuget version. I just forked the project and will try debugging the issue and try to provide some further info. Although, that will just...

When I run it through the debugger it shows me the refactoring which appears to include an error. Not sure if that's an issue when running it from nuget? Here's...

In my own analyzer I added some custom logging (writing to a file basically) to help diagnose some issues. I am going add that in here and see what it...

It's possible I am not nuget packing this thing correctly. And I've never worked with PCL's before. But when I create a nuget package locally and try to reference it,...

I have just run into this myself. I noticed that gulp/tsd.js is missing. Was this removed in the most recent update of the generator? A work around for the problem...

@wswind How we get the value of the new PK then? It's not _just_ that the method returns the PK value, it also assigns it to the Id property on...