-
-
Notifications
You must be signed in to change notification settings - Fork 399
Upgrade Nuget packages & Update lock files #3906
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
🥷 Code experts: no user but you matched threshold 10 Jack251970 has most 👩💻 activity in the files. See details
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame:
Activity based on git-commit:
Knowledge based on git-blame: ✨ Comment |
Be a legend 🏆 by adding a before and after screenshot of the changes you made, especially if they are around UI/UX. |
📝 WalkthroughWalkthroughProject-wide NuGet version bumps and lockfile refreshes across core, infrastructure, main app, plugins, and tests (e.g., Microsoft.Extensions.* → 9.0.8, NLog → 6.0.3, FSharp.Core → 9.0.303, JetBrains.Annotations → 2025.2.0, NUnit → 4.4.0). No code or public API changes. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. ✨ Finishing Touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (5)
Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj (1)
70-77
: JetBrains.Annotations 2025.2.0: OK. Consider removing explicit SourceLink package on .NET 9.
- JetBrains.Annotations bump is fine.
- On SDK 8+ SourceLink is included by default. Keeping Microsoft.SourceLink.GitHub is redundant unless you’re overriding defaults.
Apply to simplify:
<PackageReference Include="Fody" Version="6.9.2"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> </PackageReference> - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> <PackageReference Include="JetBrains.Annotations" Version="2025.2.0" />
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj (1)
100-106
: Svg.Skia and SkiaSharp version consistency verified
- Only one reference to Svg.Skia 3.0.5 and SkiaSharp 3.119.0 exists in this plugin; no mismatches detected across the repo.
- Flow.Launcher.Localization 0.0.5 remains unchanged and unaffected.
- If bundle size is a concern, consider mirroring the runtime‐cleanup targets used in sibling plugins:
<Target Name="RemoveUnnecessaryRuntimesAfterBuild" AfterTargets="Build"> <RemoveDir Directories="$(OutputPath)runtimes\browser-wasm;$(OutputPath)runtimes\linux-*;$(OutputPath)runtimes\maccatalyst-*;$(OutputPath)runtimes\osx*"/> </Target> <Target Name="RemoveUnnecessaryRuntimesAfterPublish" AfterTargets="Publish"> <RemoveDir Directories="$(PublishDir)runtimes\browser-wasm;$(PublishDir)runtimes\linux-*;$(PublishDir)runtimes\maccatalyst-*;$(PublishDir)runtimes\osx*"/> </Target>Flow.Launcher.Infrastructure/packages.lock.json (1)
81-81
: Consider avoiding open-ended version ranges for deterministic buildsThe “requested” constraints are open-ended (e.g., [6.0.3, ), [1.8.5, ), [9.0.8, )). The lockfile pins today, but future restores without locked mode can drift to newer 9.x and cause surprise CI differences.
- Prefer exact versions or central package management (Directory.Packages.props) to pin ranges.
- Enforce restore with locked mode in CI to keep reproducibility.
I can help generate a follow-up PR to centralize and pin if desired.
Also applies to: 87-87, 105-105, 111-111, 193-193
Flow.Launcher.Core/packages.lock.json (1)
262-266
: Pin project-level dependency ranges to prevent future driftThe project dependency constraints are open-ended (e.g., [6.0.3, ), [1.8.5, ), [9.0.8, ), JetBrains.Annotations [2025.2.0, )). To avoid unintentional upgrades in a future restore:
- Pin exact versions via Directory.Packages.props or set floating ranges to a bounded minor window if needed.
- Ensure CI uses dotnet restore --locked-mode.
Happy to assist if you want this tightened in the same PR or a follow-up.
Also applies to: 272-272
Flow.Launcher/packages.lock.json (1)
74-76
: Ensure restore drift is prevented: centralize versions and enforce locked restores
- No Directory.Packages.props found in the repo – consider adding one for central package version management.
- All critical PackageReference entries are already pinned exactly (e.g., Microsoft.Extensions.* 9.0.8, NLog 6.0.3, SharpVectors.Wpf 1.8.5, JetBrains.Annotations 2025.2.0).
- No GitHub Actions workflows detected under .github/workflows – please verify your CI pipeline invokes
dotnet restore --locked-mode
(or the equivalent flag in your CI) so the lockfile ranges ([9.0.8, ), etc.) cannot float to newer versions.Recommendations:
- Introduce Directory.Packages.props or pin exact versions in each csproj.
- Update your CI build definition to always pass
--locked-mode
todotnet restore
.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (13)
Flow.Launcher.Core/Flow.Launcher.Core.csproj
(1 hunks)Flow.Launcher.Core/packages.lock.json
(6 hunks)Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
(1 hunks)Flow.Launcher.Infrastructure/packages.lock.json
(5 hunks)Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
(1 hunks)Flow.Launcher.Plugin/packages.lock.json
(1 hunks)Flow.Launcher.Test/Flow.Launcher.Test.csproj
(1 hunks)Flow.Launcher/Flow.Launcher.csproj
(2 hunks)Flow.Launcher/packages.lock.json
(11 hunks)Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
(1 hunks)Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj
(1 hunks)Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj
(1 hunks)Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
(1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2024-10-08T15:52:58.573Z
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2616
File: Flow.Launcher/Flow.Launcher.csproj:7-7
Timestamp: 2024-10-08T15:52:58.573Z
Learning: In the Flow Launcher project, the version number in the `Flow.Launcher.csproj` file is dynamically updated during the CI/CD process.
Applied to files:
Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj
Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
Flow.Launcher.Core/Flow.Launcher.Core.csproj
Flow.Launcher.Test/Flow.Launcher.Test.csproj
Flow.Launcher.Plugin/packages.lock.json
Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
Flow.Launcher.Infrastructure/packages.lock.json
Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj
Flow.Launcher/Flow.Launcher.csproj
Flow.Launcher/packages.lock.json
Flow.Launcher.Core/packages.lock.json
📚 Learning: 2024-10-08T15:52:58.573Z
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2442
File: Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj:4-4
Timestamp: 2024-10-08T15:52:58.573Z
Learning: In .NET 8, SourceLink is included by default, eliminating the need for the `Microsoft.SourceLink.GitHub` package.
Applied to files:
Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
🪛 GitHub Check: Check Spelling
Flow.Launcher.Core/packages.lock.json
[warning] 210-210:
NLog
is not a recognized word. (unrecognized-spelling)
[warning] 205-205:
NLog
is not a recognized word. (unrecognized-spelling)
[warning] 263-263:
NLog
is not a recognized word. (unrecognized-spelling)
[warning] 262-262:
NLog
is not a recognized word. (unrecognized-spelling)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
- GitHub Check: gitStream workflow automation
- GitHub Check: gitStream.cm
- GitHub Check: build
🔇 Additional comments (11)
Flow.Launcher.Core/Flow.Launcher.Core.csproj (1)
56-64
: Lock file consistency confirmed for FSharp.Core 9.0.303Flow.Launcher.Core/packages.lock.json shows
• type: Direct
• requested: “[9.0.303, )”
• resolved: “9.0.303”No further action needed.
Plugins/Flow.Launcher.Plugin.Explorer/Flow.Launcher.Plugin.Explorer.csproj (1)
48-54
: Localization and OleDb upgrades approved
- Verified that Flow.Launcher.Localization has been updated to 0.0.5 everywhere—no remaining 0.0.4 references.
- System.Data.OleDb bumped to 9.0.8 is fine on Windows; ensure target machines have the required OLE DB provider installed.
Flow.Launcher.Test/Flow.Launcher.Test.csproj (1)
50-58
: NUnit 4.4.0 + Adapter 5.1.0 compatibility verified
No obsolete NUnit 3 attributes ([RequiresSTA]
,[RequiresMTA]
,[Apartment]
) were found in the test code. The upgrade is approved—just keep an eye on CI/test discovery for any defaults that might have shifted.Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj (1)
71-77
: All key package versions are consistent across projects
- NLog is pinned to 6.0.3 in both Flow.Launcher.Infrastructure and Flow.Launcher.Plugin.Program.
- NLog.OutputDebugString (6.0.3), SharpVectors.Wpf (1.8.5), and System.Drawing.Common (9.0.8) are only referenced in the Infrastructure project, as expected.
No version mismatches or duplicate bindings detected.
Plugins/Flow.Launcher.Plugin.Calculator/Flow.Launcher.Plugin.Calculator.csproj (1)
65-65
: Localization bump to 0.0.5 verified for Calculator plugin
Resources referenced in Plugins/Flow.Launcher.Plugin.Calculator:
- Views/CalculatorSettings.xaml (lines 30 & 50)
• DynamicResource flowlauncher_plugin_calculator_output_decimal_separator
• DynamicResource flowlauncher_plugin_calculator_max_decimal_placesNo x:Uid attributes detected. Please smoke-test the Calculator settings UI and confirm both labels resolve correctly at runtime.
Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj (1)
67-73
: Confirm NLog major-version upgrade and compatibilityThe PR now bumps NLog from 4.x to 6.0.3 across the solution. Before merging, please confirm:
- Intent to upgrade NLog to 6.0.3 in all projects:
• Flow.Launcher.Infrastructure (Flow.Launcher.Infrastructure.csproj
)
• Flow.Launcher.Plugin.Program (Flow.Launcher.Plugin.Program.csproj
)- Code references that must be tested for breaking changes:
• Flow.Launcher.Infrastructure/Logger/Log.cs (uses NLog.Config, NLog.Targets, NLog.Targets.Wrappers)
• Flow.Launcher/Helper/ErrorReporting.cs
• Plugins/Flow.Launcher.Plugin.Program/Logger/ProgramLogger.cs- No
<nlog>
configuration blocks found in any.config
files—if you rely on runtime config, ensure defaults or embedded settings still apply correctly in Flow.Launcher.- Validate in the Flow.Launcher host that logging behavior, formatting and targets haven’t regressed.
Minor: Microsoft.Extensions.Caching.Memory is already aligned to 9.0.8.
Flow.Launcher.Plugin/packages.lock.json (1)
13-15
: JetBrains.Annotations resolved to 2025.2.0; lock entry is consistentThe requested/resolved versions and contentHash update are consistent for net9.0-windows7.0. No further action needed.
Flow.Launcher/Flow.Launcher.csproj (1)
140-152
: Microsoft.Extensions. Versions Verified*All Microsoft.Extensions.* package references are consistently updated to version 9.0.8 across the solution:
- Flow.Launcher/Flow.Launcher.csproj
- Microsoft.Extensions.DependencyInjection 9.0.8
- Microsoft.Extensions.Hosting 9.0.8
- Plugins/Flow.Launcher.Plugin.Program/Flow.Launcher.Plugin.Program.csproj
- Microsoft.Extensions.Caching.Memory 9.0.8
No further action required.
Flow.Launcher.Infrastructure/packages.lock.json (1)
81-83
: Lockfile bumps are consistent and look good
- NLog stack to 6.0.3
- SharpVectors.Wpf to 1.8.5
- System.Drawing.Common/Microsoft.Win32.SystemEvents to 9.0.8
- JetBrains.Annotations to 2025.2.0 (project and transitive)
These align with the PR intent and keep the ecosystem versions coherent. No red flags.
Also applies to: 87-93, 105-107, 111-116, 126-128, 159-161, 193-193
Flow.Launcher.Core/packages.lock.json (1)
16-18
: Core lockfile updates are coherent across projects
- FSharp.Core to 9.0.303
- JetBrains.Annotations to 2025.2.0
- NLog + OutputDebugString to 6.0.3
- SharpVectors.Wpf to 1.8.5
- System.Drawing.Common/Microsoft.Win32.SystemEvents to 9.0.8
- Project dependency blocks mirror these versions
Matches the infrastructure and root lockfiles; no compatibility concerns expected for these minor bumps.
Also applies to: 93-95, 164-166, 202-204, 207-212, 215-217, 225-229, 262-266, 272-272
Flow.Launcher/packages.lock.json (1)
74-109
: Broad upgrades to Microsoft.Extensions 9.0.8 and related packages are consistentThe DI/Hosting/Logging stack and their abstractions/providers are uniformly at 9.0.8. Ancillaries (VirtualizingWrapPanel 2.3.1, FSharp.Core 9.0.303, NLog 6.0.3, SharpVectors.Wpf 1.8.5, System.Drawing.Common and EventLog 9.0.8, JetBrains.Annotations 2025.2.0) are aligned across root, Core, and Infrastructure lockfiles. This reduces assembly binding mismatches across projects. LGTM.
Also applies to: 157-159, 199-201, 214-216, 255-263, 265-271, 273-279, 281-288, 290-297, 299-309, 311-320, 322-331, 333-336, 338-346, 348-355, 356-363, 365-373, 375-378, 380-390, 392-400, 402-408, 410-423, 425-435, 437-445, 447-457, 459-469, 471-478, 480-490, 492-495, 555-557, 593-603, 610-613, 675-677, 679-685, 841-849, 862-866, 872-873
Let's leave this after 2.0.0, I don't want to make so many dependcy version changes at this time without some lengthy testing. |
What is this memory usage? If it's flow, is this average usage or is it from certain usage pattern? |
It was tested under my pc with about 20 plugins. I just started the Flow and searched something. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
Flow.Launcher/packages.lock.json (1)
851-868
: flow.launcher.infrastructure project deps updated (NLog, SharpVectors, System.Drawing)Project-level constraints match lockfile. Ensure csproj versions are centrally managed to avoid drift; consider Directory.Packages.props post-2.0 if not already used.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (7)
Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
(2 hunks)Flow.Launcher.Infrastructure/packages.lock.json
(6 hunks)Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
(1 hunks)Flow.Launcher.Plugin/packages.lock.json
(1 hunks)Flow.Launcher/Flow.Launcher.csproj
(3 hunks)Flow.Launcher/packages.lock.json
(12 hunks)Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
(2 hunks)
🚧 Files skipped from review as they are similar to previous changes (5)
- Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
- Plugins/Flow.Launcher.Plugin.BrowserBookmark/Flow.Launcher.Plugin.BrowserBookmark.csproj
- Flow.Launcher/Flow.Launcher.csproj
- Flow.Launcher.Plugin/packages.lock.json
- Flow.Launcher.Plugin/Flow.Launcher.Plugin.csproj
🧰 Additional context used
🧠 Learnings (1)
📚 Learning: 2024-10-08T15:52:58.573Z
Learnt from: taooceros
PR: Flow-Launcher/Flow.Launcher#2616
File: Flow.Launcher/Flow.Launcher.csproj:7-7
Timestamp: 2024-10-08T15:52:58.573Z
Learning: In the Flow Launcher project, the version number in the `Flow.Launcher.csproj` file is dynamically updated during the CI/CD process.
Applied to files:
Flow.Launcher/packages.lock.json
Flow.Launcher.Infrastructure/packages.lock.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: build
🔇 Additional comments (19)
Flow.Launcher.Infrastructure/packages.lock.json (5)
81-84
: NLog/NLog.OutputDebugString → 6.0.3: patch-level; smoke-test sinksPatch update should be safe. Please smoke-test logging to file/console/debug and ensure existing NLog.config targets/layout renderers behave the same.
Also applies to: 86-93
105-108
: SharpVectors.Wpf → 1.8.5: verify SVG rendering and DPIMinor bump. Run through UI areas that render SVG (icons, plugin logos) and confirm no scaling/color regressions.
111-116
: System.Drawing.Common/Microsoft.Win32.SystemEvents → 9.0.8: Windows-only OK; test icon loadingTarget TFM is net9.0-windows7.0, so staying on supported Windows implementation is correct. Please sanity-check any GDI+ icon/thumbnails and event-driven image refresh listeners.
Also applies to: 157-161
125-128
: JetBrains.Annotations → 2025.2.0 aligned across infra and pluginVersion alignment looks good; no API changes expected for annotations usage. Nothing further from my side.
Also applies to: 191-194
28-31
: Fody 6.9.3 bump verified across lockfiles—clean rebuild & weaver check needed
- All packages.lock.json files in Flow.Launcher, Flow.Launcher.Infrastructure, and Flow.Launcher.Plugin resolve Fody to 6.9.3 as expected.
- PropertyChanged.Fody 4.1.0 declares a minimum Fody 6.6.4, so the bumped version satisfies its requirements.
Please perform a local clean rebuild so that the Fody weaver tasks execute, and verify there are no build-time warnings or regressions in the injected INotifyPropertyChanged code paths. Let me know if anything surfaces during that build.
Flow.Launcher/packages.lock.json (14)
155-160
: VirtualizingWrapPanel → 2.3.1: test long result lists and keyboard navUI virtualization can be sensitive. Please scroll through long search result sets, resize the window, and test keyboard selection to catch regressions.
199-201
: FSharp.Core → 9.0.303 (transitive via flow.launcher.core)Matches core csproj. No concerns; keep plugin projects consistent if any reference FSharp directly.
213-216
: JetBrains.Annotations → 2025.2.0 (transitive)Aligned with plugin/infrastructure. Safe; no runtime impact.
255-330
: Configuration packages → 9.0.8: validate binding of complex optionsPatch-level. Please verify options binding scenarios (arrays, nested objects, enums) still bind as expected from appsettings.json and environment variables.
331-336
: DI/Diagnostics/Options → 9.0.8: check health of OptionsMonitor and logging scopesConfirm OptionsMonitor updates propagate at runtime and that logging scopes and Activity/diag events still appear in logs as before.
Also applies to: 338-355, 470-495
356-373
: FileProviders/Globbing/Hosting.Abstractions → 9.0.8Looks consistent. Sanity-check any file-watching or plugin folder reload behavior.
Also applies to: 374-378, 379-390
391-470
: Logging stack → 9.0.8: verify console/debug/event log targetsEnsure log levels and filters behave the same and that EventLog target still writes under expected source.
553-557
: SystemEvents/EventLog/System.Drawing.Common → 9.0.8: Windows integrationsGood to see these on the same patch. Please test:
- SystemEvents-driven updates (theme or display change) refresh UI as before.
- EventLog targets write successfully without elevated permissions.
- Any GDI+ icon manipulations remain correct.
Also applies to: 673-677, 678-685
591-603
: NLog family → 6.0.3: patch-level syncConsistent with Infrastructure. Quick regression pass on NLog targets (file, debug, eventlog) recommended.
611-613
: SharpVectors.Wpf → 1.8.5: verify SVG assets in themes/pluginsSame note as infra: check SVG rendering in dark/light themes and high DPI.
837-850
: flow.launcher.core project deps: FSharp.Core pinned to 9.0.303Good alignment with lock. No action needed.
870-873
: flow.launcher.plugin: JetBrains.Annotations → [2025.2.0, )Explicitly constraining here helps keep the graph consistent. LGTM.
72-110
: Full-stack Microsoft.Extensions. versions consistent—proceed with runtime smoke tests*
- ✅ All
Microsoft.Extensions.*
dependencies across allpackages.lock.json
files resolve to 9.0.8, confirming patch-level consistency.▶️ Next, perform manual runtime validation:
- Start the application with a representative set of plugins.
- Verify clean startup and shutdown, correct service registrations, and that configuration binding works end-to-end.
- Confirm no warnings or errors about duplicate/mismatched
Microsoft.Extensions.*
versions in the logs.
19-21
: Ensure Fody is Consistently at 6.9.3 Across All ProjectsI wasn’t able to confirm automatically (the initial script failed due to a missing
paste
utility), so please verify that everypackages.lock.json
lists Fody’sresolved
version as6.9.3
. In particular, check:
- Flow.Launcher/packages.lock.json
- Flow.Launcher.Core/packages.lock.json
- Flow.Launcher.Infrastructure/packages.lock.json
- Flow.Launcher.Plugin/packages.lock.json
Each should contain a dependency entry similar to:
"Fody": { "requested": "[6.9.3, )", "resolved": "6.9.3", "contentHash": "…" }If any project is out of sync, update its Fody reference (in the corresponding
.csproj
or package configuration) so that all lockfiles restore to 6.9.3.
Upgrade Nuget packages & Update lock files
Update all Nuget packages and update related lock files.
Suppress FLSG0007 warning
Since plenty of strings are only used in Xaml design, FLSG0007 warnings for them are unnecessary.
Test
All updates are minor version updates, and there is almost no difference in memory usage during testing.
Memory usage:
665mb -> 667mb
Installer size:
101mb -> 98mb