Wednesday, 11 January 2023

.net core run using cli issues

   Unable to configure HTTPS endpoint. No server certificate was specified, and the default developer certificate could not be found 


solution:  Run  dotnet dev-certs https -t

Friday, 6 January 2023

Angular Push notification

 using below link u can send push notificaiton to web angular page

https://github.com/jishnusaha/firebase-push-notification-with-anuglarpush notification


To show notification in foreground use this setting go through the documentation and read it properly

firebase


using asp.net  push notification link here

error:after publishing code in asp.net core api then got the error 405 method not allowed.

then add value to the web.config see this link


second importent point

push notification working fine but after click it is not redirecting to url then i have used above piece of code.

push notification with url click

Thursday, 5 January 2023

angular less version error

 



$env:NODE_OPTIONS = "--openssl-legacy-provider"
give command in angular cli.

Wednesday, 4 January 2023

flutter android error


 above  issue runing flutter from flutter doctor. then getting above error.To reslove it

1.flutter config --android-sdk C:/Users/Home/AppData/Local/Android/Sdk.


7 Common mistakes in Dot Net — You can avoid

  There are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code… Code Crack...