Grimace of Despair

Results 13 comments of Grimace of Despair

Well, it was of course not that obscure that I could not get past it. Just thought I mention it here.

I was able to use AutoDllPlugin together with jQuery and bootstrap by moving jQuery out of the dll bundle: webpack.config.js: ```javascript const jqueryPath = require('fs').realpathSync(`${__dirname}/node_modules/jquery/dist/jquery.min.js`); module.exports = { /* Entry...

I'm running into the same issue here. Trying to generate an OAuth client based on: [Consumes("application/x-www-form-urlencoded")] [Produces("application/json")] [HttpPost("~" + TokenPath)] public async Task Exchange([FromForm] OpenIdConnectRequest request) Which gives: exchange(request: OpenIdConnectRequest...

I'm actually using NUnit 2.6 on NUnitTestAdapter.2.0.0, so maybe the fix was "just" not backported?

I'm open to aid in resolving this issue. The issue on the NUnit3 adapter has no direct links to the code changes that comprehend the fix, which makes it a...

Ok, tnx for the info. I'll post a link here for my own reference purposes and for any extra pair of eyes that might want to have a look: https://github.com/nunit/nunit3-vs-adapter/compare/3.0-ctp-8...3.0-ctp-9

It looks like the most important change was DiscoverTests which had a pretty straightforward refactoring comprising 2 changes. The first one takes the GetRunnerFor out of a try..finally block, and...

I've got some more info on this issue, and a clue as to what might be happening. It seems that sometimes, after a build, the adapter kicks in before the...

Unless it's actually a different bug?