Modify permissions to a Directory or Files with Net
With the code below you can copy and set specific permissions to a directory within Net app. Read more»
With the code below you can copy and set specific permissions to a directory within Net app. Read more»
For a process I had to update the Author field in SharePoint online list item. This time I decided to use PnP.Core instead of PnP.Framework. Was it worth it? I don’t really know, but the method is not the most difficult part of the task. Read more»
When you use Azure SQL Database, then you should understand, that it has something different from on-prem version. And you will find it only when you start to work with it. Read more»
Here I will write down the steps for creating projects for SPFX solutions. The prerequisites – Node, Yo and spfx-fast-serve are already installed. Read more»
An application that was developed by me as a service with Net Core 8 didn’t want to start working as a Windows service. The application was created in Visual studio 2022 with a “Worker service” template. If you just start the app, it works. But I had problems to start it as a Windows Service. Read more»
The Azurite open-source emulator provides a free local environment for testing your Azure Blob, Queue Storage, and Table Storage applications. When you’re satisfied with how your application is working locally, switch to using an Azure Storage account in the cloud. The emulator provides cross-platform support on Windows, Linux, and macOS. Read more»
Today I talked to my colleague about the speed of Hot Reload when developing React applications. I told him that I tried launching from WSL and that everything updates faster. This is about pure React, not for SPFX. I was asked how I created a project and how it works for me. And it turns […] Read more»
SmartFormat is a is a lightweight text templating library to replace string.Format. Unlike common String.Format, with SmartFormat you can read templates from text files or another source. Here I will share the way, how I tried to write the DateTime in the format ‘dd/MM/yyyy HH:mm:ss’. It was not so obvious. Read more»
For a prototype I loaded a pfx certificate from file system of Azure App. It can be done only while test!!And I got the error “Exception Info: System.Security.Cryptography.CryptographicException: The system cannot find the file specified.“ Read more»
I used a TextField component in MUI and wanted to make a label always visible. By default, it hides, when cursor is out (onBlur) and the value is empty. Very strange and not what I wanted to. Read more»