Jani Hyytiäinen
Jani Hyytiäinen
@kienzen87 @srinivasmummareddy how about if you try the following instead of using `AzureCLI@2` task?: ```yaml steps: - powershell: # Run a script in Windows PowerShell on Windows, and pwsh on...
@timdeschryver like said, the "Bearer " is hard coded in the `JwtBearerHandler` and only in that case the token gets assigned a value. ```cs if (authorization.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase)) { token...
Two things I needed to do: First enable [esModuleInterop](https://www.typescriptlang.org/tsconfig/#esModuleInterop) in `tsconfig.json`. This will also enable [allowSyntheticDefaultImports](https://www.typescriptlang.org/tsconfig/#allowSyntheticDefaultImports). After this, ensure that your `typescript` dev dependency in your `package.json` is up to...