Skip to content

Commit 558906b

Browse files
Fix build
1 parent 3e50dc0 commit 558906b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/setup-dotnet@v2
1515

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

1919
- name: Create installer
2020
run: |

DesktopClock/OutlinedTextBlock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public TextWrapping TextWrapping
184184
public OutlinedTextBlock()
185185
{
186186
UpdatePen();
187-
TextDecorations = [];
187+
TextDecorations = new();
188188
}
189189

190190
protected override void OnRender(DrawingContext drawingContext)

0 commit comments

Comments
 (0)