We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e50dc0 commit 558906bCopy full SHA for 558906b
.github/workflows/deploy.yml
@@ -14,7 +14,7 @@ jobs:
14
- uses: actions/setup-dotnet@v2
15
16
- name: Build
17
- run: dotnet publish -o "publish" -c Release -r win-x64
+ run: dotnet publish .\DesktopClock\DesktopClock.csproj -o "publish" -c Release -r win-x64
18
19
- name: Create installer
20
run: |
DesktopClock/OutlinedTextBlock.cs
@@ -184,7 +184,7 @@ public TextWrapping TextWrapping
184
public OutlinedTextBlock()
185
{
186
UpdatePen();
187
- TextDecorations = [];
+ TextDecorations = new();
188
}
189
190
protected override void OnRender(DrawingContext drawingContext)
0 commit comments