.NET 2.2 => NET 5.0 – Endpoint Routing does not support ‘IApplicationBuilder.UseMvc(…)

  Solution   Use “endpoint” routing Old app.ConfigureExceptionHandler(loggerFactory); app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseSpaStaticFiles(); app.UseAuthentication(); app.UseCors(“CorsPolicy”); app.UseMvc(routes => { routes.MapRoute( name: “default”, template: “{controller}/{action=Index}/{id?}”); });   New   app.ConfigureExceptionHandler(loggerFactory); app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseSpaStaticFiles(); app.UseRouting(); app.UseCors(“CorsPolicy”); app.UseAuthentication(); app.UseEndpoints(endpoints => {

NET 5 – Fix – ‘IConfigurationSection’ does not contain a definition for ‘Get’ and no accessible extension method ‘Get’ accepting a first argument of type ‘IConfigurationSection’ could be found (are you missing a using directive or an assembly reference?)

  ‘IConfigurationSection’ does not contain a definition for ‘Get’ and no accessible extension method ‘Get’ accepting a first argument of type ‘IConfigurationSection’ could be found (are you missing a using directive or an assembly reference?)

Node-sass – fix – gyp verb check python checking for Python executable “python2” in the PATH

  node-sass – gyp verb check python checking for Python executable “python2” in the PATH   Fix: https://stackoverflow.com/questions/45801457/node-js-python-not-found-exception-due-to-node-sass-and-node-gyp delete node_modulesfolder running npm install –global windows-build-tools reinstalling node modules or node-sass with npm install    

GitLab – FastLane – Apple M1 – How to fix: Permission denied @ rb_sysopen – /Users/roelvanlisdonk/Library/MobileDevice/Provisioning Profiles/1111111-111-1111-1111-111111111.mobileprovision

  When executing “bundle exec fastlane mylane”, I was getting the error: Permission denied @ rb_sysopen – /Users/roelvanlisdonk/Library/MobileDevice/Provisioning Profiles/1111111-111-1111-1111-111111111.mobileprovision   Solution Change folder permissions: sudo chown -R $(whoami) “/Users/roelvanlisdonk/Library/MobileDevice/Provisioning Profiles/12c0f4c3-8219-4c47-b204-65d77a05ece4.mobileprovision”