-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
68 additions
and
21 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Consolonia.PreviewHost | ||
This is a tool which enables a live view of a consolonia axaml file, or a consolonia project. | ||
|
||
## Installation | ||
To install the tool, you can use the following command: | ||
``` | ||
dotnet tool install -g Consolonia.PreviewHost | ||
``` | ||
|
||
## Usage | ||
To use the tool, you can use the following command: | ||
``` | ||
Consolonia.PreviewHost <path-to-axaml-file>|<path-to-project-file>|<path-to-project-directory> | ||
``` | ||
|
||
It will monitor the file or directory for changes, and will automatically update the preview when changes are detected. | ||
|
||
Run the following command to monitor the project or folder: | ||
|
||
``` Conoslonia.PreviewHost <path-to-project-file-or-folder> ``` | ||
|
||
Run following command to monitor a given .axaml file. | ||
|
||
``` Conoslonia.PreviewHost <.axaml file name> ``` | ||
|
||
> NOTE: In single file mode the tool will exit when you hit escape key | ||
### Running inside Visual Studio | ||
1. Open the solution in Visual Studio. | ||
1. Open a Terminal (View -> Terminal). | ||
3. run the following command | ||
``` Consolonia.PreviewHost . ``` | ||
|
||
### Running inside Visual Studio Code | ||
To integrate the tool with Visual Studio Code, you can use the following steps: | ||
1. Open the project directory in Visual Studio Code. | ||
2. Open a terminal inside of visual studio code | ||
3. run the following command | ||
``` Consolonia.PreviewHost . ``` |