Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
danielchalmers committed Oct 15, 2023
1 parent 3e50dc0 commit 558906b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-dotnet@v2

- name: Build
run: dotnet publish -o "publish" -c Release -r win-x64
run: dotnet publish .\DesktopClock\DesktopClock.csproj -o "publish" -c Release -r win-x64

- name: Create installer
run: |
Expand Down
2 changes: 1 addition & 1 deletion DesktopClock/OutlinedTextBlock.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public TextWrapping TextWrapping
public OutlinedTextBlock()
{
UpdatePen();
TextDecorations = [];
TextDecorations = new();
}

protected override void OnRender(DrawingContext drawingContext)
Expand Down

0 comments on commit 558906b

Please sign in to comment.