Update from .NET 5 to .NET 6

https://blazorschool.com/tutorial/blazor-wasm/dotnet5/update-from-dotnet-5-to-dotnet-6-682674 https://docs.microsoft.com/en-us/aspnet/core/migration/50-to-60?view=aspnetcore-6.0 https://nicolaiarocci.com/my-asp.net-5-migration-to-.net-6/

Minimal API with .Net 6

https://medium.com/geekculture/minimal-apis-in-net-6-a-complete-guide-beginners-advanced-fd64f4da07f5 https://jasonwatmore.com/post/2022/02/04/net-6-minimal-api-tutorial-and-example https://nicolaiarocci.com/will-.net-6-minimal-apis-turn-heads/

Failed to find a valid digest in the ‘integrity’ attribute for resource in Blazor app

Error: Failed to find a valid digest in the 'integrity' attribute for resource xxxx with computed SHA-256 integrity xxxx. The resource has been blocked. Fix: Close Visual Studio 2022 Delete the obj and bin folders from all your projects. Start Visual Studio 2022 Rebuild solution. Try Publish again. Sources: https://stackoverflow.com/questions/69926878/failed-to-find-a-valid-digest-in-the-integrity-attribute-for-resource-in-blazo

Report Viewer Download

Microsoft Report Viewer 2015 Runtime https://www.microsoft.com/en-us/download/details.aspx?id=45496 Install Errors Microsoft System CLR Types for SQL Server 2014 is missing. Download Microsoft SQLSysCLRTypes from Official Microsoft Download Center

.NET MAUI

.NET Multi-platform App UI (.NET MAUI) is a cross-platform framework for creating native mobile and desktop apps with C# and XAML. .NET MAUI Essentials arrives this fall 2021. Alongside more details of MAUI, Microsoft says it will end updates to the Xamarin mobile app development platform in November 2022. Xamarin has been the Microsoft technology... » read more

Secret Manager Tool for .NET App

This document explains how to manage sensitive data for an ASP.NET Core app on a development machine. Never store passwords or other sensitive data in source code. Production secrets shouldn’t be used for development or test. Secrets shouldn’t be deployed with the app. Instead, production secrets should be accessed through a controlled means like environment... » read more

SendGrid Setup

Create SendGrid Account https://sendgrid.com/ Install the package The recommended installation uses the NuGet package manager. Run the following: Alternatively, you can download the SendGrid C# .NET library directly from our Github repository. Send your first email The following is the minimum needed code to send an email:

Install Entity Framework for .NET Core

Install the Packages Go to Tools and then select -> NuGet Package Manager -> Package Manager Console. You can see the PM> and copy and paste the below line to install the Database Provider package. This package is used to set the database provider as SQL Server You can see the PM> and copy and... » read more