Skip to content

Commit

Permalink
docs: add build content
Browse files Browse the repository at this point in the history
fix: ink attributes IsHighlighter=false
  • Loading branch information
realybin committed Oct 24, 2024
1 parent 3b64b9b commit b5dbd0a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ A application brings the ability to draw on your screen
- Windows 10 or greater
- Visual Studio 2022/JetBrains Rider
- .NET Desktop workload with `.NET 8`
### Publish
We are using [Velopack](https://github.com/velopack/velopack) to generate release

Before you using following commands, please ensure that you have read [this](https://docs.velopack.io/getting-started/csharp)
```shell
dotnet publish -c Release --self-contained -r win-x64 -o .\publish
```
```shell
vpk pack -u SketchNow -v 1.0.0 -p .\publish -e SketchNow.ex
```
### Test
- Moq.AutoMocker
### Credit
Expand Down
2 changes: 1 addition & 1 deletion SketchNow/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public partial class MainWindowViewModel : ObservableObject
FitToCurve = Settings.Default.FitToCurve,
Height = 5,
Width = 5,
IsHighlighter = true
IsHighlighter = false
};
[ObservableProperty] private InkCanvasEditingMode _selectedEditingMode = InkCanvasEditingMode.None;

Expand Down

0 comments on commit b5dbd0a

Please sign in to comment.