Dynamo
Dynamo copied to clipboard
WIP net10.0 Update
Purpose
WIP. The purpose of this PR is to update the Dynamo Repo from net8.0 to net10.0. The changes include:
- Updating the build and test to utilize net10.0
- Update the ambiguous reference to
MenuItem - Remove use of embedded node bitmap icons in various Image.resx files. These embedded images utilized the BinaryFormatter for serialization. The BinaryFormatter is no longer included with net10.0 and attempts to deserialize the existing icons result in an exception. This PR has updated the icon images to be included by runtime serialization to embedded resource in
byte[]format. Due to the runtime serialization, the individual images files are now included explicitly in the repo.
Todo
- [ ] Audit and remove extraneous images. Some icons are either no longer required (ie nodes that have been removed, renamed, or deprecated)
- [ ] Adjust Build system to support net10.0 builds.
- [ ] Identify options for third party node developers. This may be messaging and documentation to indicate lack of support of previous embed bitmap icons.
Declarations
Check these if you believe they are true
- [x] The codebase is in a better state after this PR
- [x] Is documented according to the standards
- [ ] The level of testing this PR includes is appropriate
- [ ] User facing strings, if any, are extracted into
*.resxfiles - [ ] All tests pass using the self-service CI.
- [ ] Snapshot of UI changes, if any.
- [ ] Changes to the API follow Semantic Versioning and are documented in the API Changes document.
- [ ] This PR modifies some build requirements and the readme is updated
- [ ] This PR contains no files larger than 50 MB
Release Notes
- Dynamo is now built with the .NET10.0 Runtime
- Dynamo mechanism for icon packages is now updated due to changes in .NET10 Runtime. Embedded Bitmap icons in a .resx file are no longer supported. The prefered option is embedded
Byte[]
Reviewers
@zeusongit @sm6srw @aparajit-pratap
FYIs
@Amoursol @achintyabhat @jasonstratton