Skip to content

Commit 68a9207

Browse files
[release/dev18.0] Fix XAML peek in VS editor. XamlPeekableItemFactory needs to implement exported interface. (#80923)
Backport of #80919 to release/dev18.0 /cc @jasonmalinowski @spadapet ## Customer Impact ## Regression - [ ] Yes - [ ] No [If yes, specify when the regression was introduced. Provide the PR or commit if known.] ## Testing [How was the fix verified? How was the issue missed previously? What tests were added?] ## Risk [High/Medium/Low. Justify the indication by mentioning how risks were measured and addressed.]
2 parents 9533514 + 942ec5a commit 68a9207

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/VisualStudio/Xaml/Impl/Features/Peek/IXamlPeekableItemFactory.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ internal interface IXamlPeekableItemFactory
3030
internal sealed class XamlPeekableItemFactory(
3131
IMetadataAsSourceFileService metadataAsSourceFileService,
3232
IGlobalOptionService globalOptions,
33-
IThreadingContext threadingContext) : PeekableItemFactory(metadataAsSourceFileService, globalOptions, threadingContext);
33+
IThreadingContext threadingContext)
34+
: PeekableItemFactory(metadataAsSourceFileService, globalOptions, threadingContext)
35+
, IXamlPeekableItemFactory;

0 commit comments

Comments
 (0)