Tymonello
Tymonello
I also have problem with SA1126. `Warning: SA1126 : CSharp.Readability : The call to vardate must begin with the 'this.', 'base.' or 'object.' prefix to indicate the intended method call.`...
I have the same problem. Style cop version 6.2.7489.1 I get the SA1126 error when using out var declaration.
I have encountered a similar thing. For me it was on this line of code: ` (DateTime?, DateTime?) lastPeriod = DownloadLastPeriod(id);` And the method DownloadLastPeriod returns either data from an...
This is what it produces for my website with SVG: 
I am trying to configure the dashboard with a simple authorization: ```csharp app.UseHangfireDashboard("/hangfire", new DashboardOptions { Authorization = new[] { new BasicAuthAuthorizationFilter(new BasicAuthAuthorizationFilterOptions { RequireSsl = false, SslRedirect = false,...
I have pushed the application in this form to a production server, which is also linux, and there everything works. I will try to find out what is the difference...
Both servers have system `Ubuntu 22.04.3 LTS` The difference that I can see is, that the working production server has some packages like `aspnetcore-targeting-pack`, `dotnet-apphost-pack`, `dotnet-targeting-pack` in version 8.0.2-0 while...
Thank you for the answer @halter73 - I don't have what you are mentioning configured explicitly. This is my Identity configuration: ```csharp builder.Services.AddIdentity( options => { options.SignIn.RequireConfirmedAccount = true; //...
@halter73 I have added this configuration: ```csharp builder.Services .AddDataProtection() .SetApplicationName("NAME"); ``` This is just one application on the server, on the same host, one instance and always running as root...
@halter73 we cannot make this repository public.