Resolved: Adding MX Record(s) in AWS

 Recently, I was migrating MX records from WIX to AWS. I was using GSuite and I was unable to do the same. Then after a little bit of research, I found this stackoverflow link , which helped me resolve the problem. Here is how you should be adding the records in AWS. Record Name: @ Record Type: MX Value: <Priority> <Route Traffic to> example: 10 aspx.alt1.google.com And if you have multiple records, simply add the records in the same text area in the new line and no commas. This will resolve your problem. :)

.Net 7 - What should I know?

 .Net 7 is out on Nov 8, 2022. I was checking it out and had multiple question in mind and sharing them here.

Till what time .Net 7 is supported and how about .Net 6 lifetime?

So, I checkout out https://endoflife.date/dotnet for this and sharing the crux here:


How do I migrate my existing .Net 6 applications to .Net 7?

I believe that you do not need to rush for that as .Net 6.0 is in LTS (Refer the table above). However, it is good to start with .Net 7 for new applications.

Are there any breaking changes in .Net 7?


Why should I consider moving to .Net 7?
I liked this article 
https://blog.dotnetsafer.com/new-official-net-7-features-released-now-faster-and-lighter/

Is there any sample architecture, I can refer?
I recommend following the Clean Architecture from here:
https://github.com/jasontaylordev/CleanArchitecture

And a sample Core Admin implementation:
https://github.com/edandersen/core-admin

Hope this document will help you building you applications with .Net 7.