Kayıtlar

The Logging Everyone Should Be Using in .NET

Resim

How To Deploy .NET Aspire Apps To Azure | .NET 8

Resim

The New Way To Build Cloud Native Applications With .NET 8

Resim

15.04.2024 izlediklerim

Resim
Amazon ai code whisperer Dotnet projelerinde exception ile durumları yönetmek yerine errorof kütüphanesi kullanımı

wifi şifreniz windowsta

 C:\Windows\System>netsh wlan show profile "wifiname" key=clear

24.12.2023 izlediklerim

Resim
 Dapper ile yardımcı queryler yazmak CORS içinde querylere behaviour yoluyla cache dekorasyonu yapmak         _logger.LogInformation("Event Created {@Date}", context.Message.Created);        string resizeMeta = "640x480,800x600,1280x940";        MagickImageInfo imageInfo = new MagickImageInfo(context.Message.ImageFile);        List<string> resizeList = resizeMeta.Split(',').ToList();        string fileName = $"{imageInfo.Width}x{imageInfo.Height}";        resizeList.Add(fileName);        List<TestCreatedIntegrationEventWrapper> resizedImageList = new();        foreach (var resize in resizeList)        {            var width = resize.Split("x").First();            var height = resize.Split("x").Last();         ...