Skip to content

Commit 4df790d

Browse files
committed
v1.3 - Add debug logging to track file deletion issue
1 parent 7a9a729 commit 4df790d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

WindowsEdgeLight/App.xaml.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ private async Task DownloadAndInstallUpdateAsync()
8585
return;
8686
}
8787

88+
// DEBUG: Show what we got
89+
MessageBox.Show($"Downloaded to:\n{downloadedAsset.FilePath}\n\nExists: {System.IO.File.Exists(downloadedAsset.FilePath)}\n\nClick OK to continue...",
90+
"Debug Info", MessageBoxButton.OK, MessageBoxImage.Information);
91+
8892
// Verify the file still exists
8993
if (!System.IO.File.Exists(downloadedAsset.FilePath))
9094
{

WindowsEdgeLight/WindowsEdgeLight.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<ApplicationIcon>ringlight_cropped.ico</ApplicationIcon>
1111

1212
<!-- Assembly Information -->
13-
<AssemblyVersion>1.2.0.0</AssemblyVersion>
14-
<FileVersion>1.2.0.0</FileVersion>
15-
<Version>1.2</Version>
13+
<AssemblyVersion>1.3.0.0</AssemblyVersion>
14+
<FileVersion>1.3.0.0</FileVersion>
15+
<Version>1.3</Version>
1616
<Authors>Scott Hanselman</Authors>
1717
<Company>Scott Hanselman</Company>
1818
<Product>Windows Edge Light</Product>

0 commit comments

Comments
 (0)