Skip to content

Commit 8433029

Browse files
committed
Update build path and add notes for tsc
1 parent c070a6b commit 8433029

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ https://visualstudio.microsoft.com/vs/
2929
### Build Steps 🔨📐
3030
- Clone Repo
3131
- Open terminal in root of project
32-
- `dotnet publish LogViewer.Server --runtime osx-x64 --output bin/dist/osx --configuration release -p:PublishSingleFile=true` generates a self contained application for our WebAPI
33-
- `dotnet publish LogViewer.Server --runtime win-x64 --output bin/dist/win --configuration release -p:PublishSingleFile=true` same but creates the Windows version
32+
- `dotnet publish LogViewer.Server --runtime osx-x64 --output LogViewer.Server/bin/dist/osx --configuration release -p:PublishSingleFile=true` generates a self contained application for our WebAPI
33+
- `dotnet publish LogViewer.Server --runtime win-x64 --output LogViewer.Server/bin/dist/win --configuration release -p:PublishSingleFile=true` same but creates the Windows version
3434
- Change terminal directory to `LogViewer.Client` folder
3535
- Install TypeScript if missing `npm install -g typescript`
3636
- `npm install`
3737
- `tsc --watch` This will compile the TypeScript files & continue to watch them
38+
- If you receive an error about `Command 'tsc' not found`, run `npm install typescript -g`, close the terminal and open a new one.
3839
- Open a new terminal in `LogViewer.Client`
3940
- `npm run start` Will run the Electron app for development with Chrome DevTools open/launched
4041

0 commit comments

Comments
 (0)