Build: drop retired ManagedVwWindow.dll from RegFree managed COM list#989
Open
johnml1135 wants to merge 1 commit into
Open
Build: drop retired ManagedVwWindow.dll from RegFree managed COM list#989johnml1135 wants to merge 1 commit into
johnml1135 wants to merge 1 commit into
Conversation
ManagedVwWindow.dll was retired with the Linux-era view shims (#906), which updated mkall.targets and Installer.legacy.targets but missed Build/RegFree.targets. It still listed the DLL as a managed COM assembly, so the RegFree task warned "Could not find file ...\Output\Debug\ManagedVwWindow.dll" for every EXE importing the target (UnicodeCharEditor, LCMBrowser). Remove the stale entry; the remaining managed COM assemblies (FwUtils.dll, SimpleRootSite.dll) are unaffected. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
ManagedVwWindow.dllwas retired with the Linux-era view shims (#906). That cleanup updatedBuild/mkall.targets(excludes its CLSID) andBuild/Installer.legacy.targets(lists it as removed-since-last-base), but missedBuild/RegFree.targets, which still listed the DLL inManagedComAssemblies.Because the file no longer exists, the
RegFreetask emits a warning for every EXE that imports the target:Change
Remove the stale
<ManagedComAssemblies Include="$(OutDir)ManagedVwWindow.dll" />entry (replaced with an explanatory comment). The remaining managed COM assemblies (FwUtils.dll,SimpleRootSite.dll) are real and unaffected.Impact
UnicodeCharEditorandLCMBrowserbuilds (one root cause, surfaced once per EXE).🤖 Generated with Claude Code
This change is