You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to reproduce:
List the minimal actions needed to reproduce the behavior.
Create a Blazor WebAssembly project using the default template, uncheck ASP.NET Core Hosted, and select .NET6
Install InfluxDb.Client 4.11.0
Anywhere in the code, try to instantiate a new client:
var options = new InfluxDBClientOptions("http://localhost8086")
{
Token = myToken,
Timeout = TimeSpan.FromSeconds(10)
};
var client = new InfluxDBClient(options);
Expected behavior:
Constructor should executed without issues
Actual behavior:
Constructor throws a PlatformNotSupportedException