Skip to content

Commit

Permalink
Upgrade to AppSuite 2.3.75.116-preview.
Browse files Browse the repository at this point in the history
  • Loading branch information
hamster620 committed Jan 16, 2024
1 parent 1c442bd commit c1df9cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions ULogViewer/App.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,13 @@ protected override int OnParseArguments(string[] args, int index, IDictionary<st


/// <inheritdoc/>
protected override async Task OnPrepareShuttingDownAsync()
protected override async Task OnPrepareShuttingDownAsync(bool isCritical)
{
await LogTextFilterPhrasesDatabase.CloseAsync();
await base.OnPrepareShuttingDownAsync();
if (isCritical)
LogTextFilterPhrasesDatabase.CloseAsync().Wait();
else
await LogTextFilterPhrasesDatabase.CloseAsync();
await base.OnPrepareShuttingDownAsync(isCritical);
}


Expand Down
2 changes: 1 addition & 1 deletion ULogViewer/ULogViewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<PublishReadyToRun>false</PublishReadyToRun>
<PublishReadyToRunEmitSymbols>false</PublishReadyToRunEmitSymbols>
<AvaloniaNameGeneratorFilterByNamespace>Dummy</AvaloniaNameGeneratorFilterByNamespace> <!-- Prevent generating InitializeComponents() and fields -->
<AppSuiteVersion>2.3.74.113-preview</AppSuiteVersion>
<AppSuiteVersion>2.3.75.116-preview</AppSuiteVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
Expand Down

0 comments on commit c1df9cc

Please sign in to comment.