Skip to content

ConfiguringApplications

Stephen Cooper edited this page Apr 27, 2019 · 1 revision

Configuring .NET Core Applications

If there are no configured Applications upon starting the Configuration pane will be displayed. This can be manually shown through the Preferences menu.

Configuration store

All configuration settings are stored in plain text json files. As a result, do not set any sensitive information in configuration.


Configuration Pane

Project path

When selecting a projects csproj ensure the containing folder is selected. Currently the project path is used to set the Current Working Directory (CWD) of the resulting .NET CLI command.

Command line arguments

Additional arguments to be passed into the .NET CLI command. Be aware these are placed at the end of the command, with no other pre-processing.

For example, setting DisableAngularLiveReload=True will result in dotnet watch run DisableAngularLiveReload=True