RS
RS
// tried feature request and it didn't work, I swear! __Proposal:__ Line out best practices in the documentation how to efficiently write to InfluxDB using the C# SDK __Current behavior:__...
Is it really necessary to **include** all identityserver and dependent assemblies into this one? Why not use Nuget dependencies? It is really cumbersome to manage any version conflicts this way.
With my Startup.cs looking like this: ``` public void Configuration(IAppBuilder app) { Log.Logger = new LoggerConfiguration() .MinimumLevel.Verbose() .WriteTo.RollingFile("C:\temp\trace-{Date}.log") .CreateLogger(); //Serilog.Debugging.SelfLog.Enable((msg) => System.Diagnostics.Debug.WriteLine(msg)); ConfigureIdentityAdminApplication(app); } ``` I only receive the following...
### Product Hot Chocolate ### Is your feature request related to a problem? ``` The type of the member CountUsed of the declaring type Shape is unknown (HotChocolate.Data.Filters.FilterInputType) ``` It...
### Product Hot Chocolate ### Is your feature request related to a problem? Can we please have `internal` access identifiers? Currently I need to make DbContext instances all `public` in...
### This is what your best practice sample says: ```cs public static void Reconnect_Using_Timer() { /* * This sample shows how to reconnect when the connection was dropped. * This...