-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from sharwell/fix-6
Add a dummy export to Tvl.VisualStudio.InheritanceMargin.Interfaces
- Loading branch information
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
Tvl.VisualStudio.InheritanceMargin.Interfaces/MefBindingWorkaround.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Tvl.VisualStudio.InheritanceMargin.Interfaces | ||
{ | ||
using System.ComponentModel.Composition; | ||
|
||
/// <summary> | ||
/// This class exists for the sole purpose of working around issue | ||
/// https://github.com/tunnelvisionlabs/InheritanceMargin/issues/6. | ||
/// </summary> | ||
/// <remarks> | ||
/// <para>Applying the <see cref="ExportAttribute"/> is required for the affected version(s) of Visual Studio to | ||
/// place this interfaces assembly in the MEF cache.</para> | ||
/// </remarks> | ||
[Export] | ||
internal class MefBindingWorkaround | ||
{ | ||
} | ||
} |
This file contains 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
This file contains 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