Shaun Luttin

Results 7 comments of Shaun Luttin

This issue also occurs with `.xproj` files. **Here is my workaround:** 1. Add CodeFormatterWorkaround.csproj in your the directory. 2. Then run `codeformatter .\CodeFormatterWorkaround.csproj` This recursively formats all `*.cs` files without...

Given that the last comment was March 18, 2017, I am assuming that no other developers are working on this issue. Is that right? Also, if I understand correctly, this...

I can put together a small demo for you later this week. Off the top of my head, I think it is as simple as adding the following to the...

Apologies for not having responded. I have been away from the computer for a while.

This appears to work in the app.ts code: ``` public attached() { this.openIdConnect.observeUser((user: User) => this.onUserChanged(user)); } private onUserChanged(user: User) { this.user = user; if (!this.user) { this.openIdConnect.login(); } }...

@michaelschneiderdaimler We ended up using `nyc` directly with `mocha`. https://github.com/istanbuljs/nyc The simplest usage from the command line looks something like this: ``` $ nyc mocha .\some-test.js ```

We're trying to handle a [successful OpenID Connect authentication response](http://openid.net/specs/openid-connect-core-1_0.html#ImplicitAuthResponse). Is this bug also responsible for preventing the Aurelia Router from handling the following? ``` HTTP/1.1 302 Found Location: https://client.example.org/callback/#...