[minor] Explicitly Load Plugin Dependencies to Avoid Resaving the Project #35
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this Pull Request accomplish?
This Pull Request updates the
Create Plugin.vi
to explicitly load the dependencies of the plugin library VIs before saving the project, ensuring that the dependencies of the VIs are loaded in the project.Context
Create Plugin.vi
adds the plugin library to the active project programmatically. However, this action does not automatically load the dependencies of the plugin in the project window. As a result, when we close and reopen the project, an*
symbol appears in the project window, indicating unsaved changes, which actually point to the addition of the plugin's dependencies to the project window.Why should this Pull Request be merged?
This Pull Request should be merged to ensure that the dependencies of the plugin VIs are loaded into the project before saving, thereby preventing unsaved changes related to the plugin's dependencies.
What testing has been done?
Manual testing has been conducted by creating a plugin and ensuring that the above-mentioned scenario is not encountered.