Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ indent_style = space
trim_trailing_whitespace = true
max_line_length = 120

[*.{md,sh}]
end_of_line = lf

# MSBuild
[*.{csproj,proj,projitems,shproj,fsproj,target,props}]
indent_style = space
Expand Down Expand Up @@ -90,4 +93,4 @@ dotnet_diagnostic.VSTHRD002.severity = none
# VSTHRD103: Call async methods when in an async method
dotnet_diagnostic.VSTHRD103.severity = none
# VSTHRD200: Use "Async" suffix for async methods
dotnet_diagnostic.VSTHRD200.severity = none
dotnet_diagnostic.VSTHRD200.severity = none
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Alternatively, you can install from Homebrew:
brew install structuredlogviewer
```

## Building & Running the Avalonia version on Mac:
## Building & Running the Avalonia version on Mac/Linux:

```
git clone https://github.com/KirillOsenkov/MSBuildStructuredLog
Expand Down
3 changes: 1 addition & 2 deletions run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${DIR}/src/StructuredLogViewer.Avalonia" || exit
dotnet run StructuredLogViewer.Avalonia.csproj
dotnet run --project "${DIR}/src/StructuredLogViewer.Avalonia" -- "$@"