How to fix: Permission denied (publickey) on Windows 11, when using git clone and id_rsa private key

Source: https://confluence.atlassian.com/bitbucketserverkb/ssh-rsa-key-rejected-with-message-no-mutual-signature-algorithm-1026057701.html When using git clone with git 2.34.1 on Windows 11, I was getting the error: Permission denied (publickey). Cause: rsa is deprecated The SSH public private keys were generated by using the command:

How to fix: MSBuild error MSB4226: The imported project was not found

  When you get the MSBuild error: “WebService.csproj” (Rebuild target) (1) -> WebService.csproj(193,11): error MSB4226: The imported project “C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Microsoft\VisualStudio\v16.0\WebApplications\Microsoft.WebApplication.targets” was not found. Also, tried to find “WebApplications\Microsoft.WebApplication.targets” in the fallback search

Using ‘winston-daily-rotate-file in TypeScript

  In TypeScript you need to import the library ‘winston-daily-rotate-file’ like, so:   import ‘winston-daily-rotate-file’   import { createLogger, format, Logger, transports } from ‘winston’; import ‘winston-daily-rotate-file’;   let _winstonLogger: Logger;   function initialise() {   _winstonLogger = createLogger({     format: format.json(),     transports: [       new transports.Console({         format: format.combine(format.colorize(), format.simple()),       }),     ],   }); }   function addRotatingFileSystemLogging() {   const options = {     filename: ‘application-%DATE%.log’,