You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you create a new default .NET Core Razor Pages web app using dotnet new webapp a launchSettings.json file is created automatically. This file facilitates the use of dotnet watch run which automatically opens up a new browser window with whatever is specified for applicationUrl in launchSettings.json.
If you do the same but using the Piranha CMS templates (e.g. dotnet new piranha.razor) instead no launchSettings.json is created:
Work-around: Manually copy the launchSettings.json file from a new default .NET Core Razor Pages web app to your own app.