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.
The text was updated successfully, but these errors were encountered:
First off I'll move this to our templates repository as this has nothing to do with the core framework. Secondly, is this really an issue? When I open a newly created project in Visual Studio Code the editor prompts me with a dialog asking me if I want to create the files needed to run the project, and if I click Yes a launch.json is created for me. What editor/IDE are you using?
When you create a new default .NET Core Razor Pages web app using
dotnet new webapp
alaunchSettings.json
file is created automatically. This file facilitates the use ofdotnet watch run
which automatically opens up a new browser window with whatever is specified forapplicationUrl
inlaunchSettings.json
.If you do the same but using the Piranha CMS templates (e.g.
dotnet new piranha.razor
) instead nolaunchSettings.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.The text was updated successfully, but these errors were encountered: