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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.userosscache
*.sln.docstates
*.env
*.csproj.lscache

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand Down
2 changes: 1 addition & 1 deletion Ink-Canvas-Next/Ink-Canvas-Next.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net11.0-windows</TargetFramework>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
Expand Down
2 changes: 1 addition & 1 deletion Ink-Canvas-Next/Views/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected override void OnDataContextChanged(EventArgs e)
_previousViewModel = vm;
vm.PropertyChanged += ViewModel_PropertyChanged;
vm.ClearCanvasAction = ClearCanvas;
vm.SaveCanvasAction = SaveCanvas;
vm.SaveCanvasAction = SaveCanvasAsync;
vm.GetStrokesAction = GetCurrentStrokes;
vm.RestoreStrokesAction = RestoreStrokes;

Expand Down
5 changes: 5 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# To Do List

## Fixed Bugs
- [x] Fixed `SaveCanvas` → `SaveCanvasAsync` method name mismatch (compile error in `MainWindow.axaml.cs`)
- [x] Fixed target framework from `net11.0-windows` to `net10.0-windows` to match CI SDK
- [x] Added `*.csproj.lscache` to `.gitignore`
Loading