vs-mef icon indicating copy to clipboard operation
vs-mef copied to clipboard

Managed Extensibility Framework (MEF) implementation used by Visual Studio

Results 37 vs-mef issues
Sort by recently updated
recently updated
newest added

Bumps [Nullable](https://github.com/manuelroemer/Nullable) from 1.3.0 to 1.3.1. Changelog Sourced from Nullable's changelog. v1.3.1 This release addresses issues with the .NET 6.0.300 SDK where the source files are no longer available when...

dependencies

Bumps [Nerdbank.GitVersioning](https://github.com/dotnet/Nerdbank.GitVersioning) from 3.5.107 to 3.5.108. Release notes Sourced from Nerdbank.GitVersioning's releases. v3.5.108 Changes: #777: Bump Newtonsoft.Json from 9.0.1 to 13.0.1 in /src/NerdBank.GitVersioning This list of changes was auto generated....

dependencies

Although the workaround exists where a new `ComposableCatalog` can be created with a subset of the parts from a prior catalog, it would be more convenient if a method were...

enhancement

_From @dgriffen on April 4, 2018 17:5_ There should be a diagnostic checking if `Export` declarations are correct. For example: ```csharp [Export(typeof(IBar))] public class Foo { } ``` This should...

analyzers

The LazyOfSharedPartConstructsOnlyOneInstanceAcrossThreads test has failed in at least two different builds. See [one such failure here](https://ci.appveyor.com/project/AArnott/vs-mef/build/15.6.12+g871b0b821a#L70): ``` V1 [FAIL] Assert.Equal() Failure Expected: 1 Actual: 2 Stack Trace: src\tests\Microsoft.VisualStudio.Composition.Tests\ThreadSafetyTests.cs(82,0): at Microsoft.VisualStudio.Composition.Tests.ThreadSafetyTests.d__3.MoveNext()...

Bumps [System.Reflection.Metadata](https://github.com/dotnet/runtime) from 5.0.0 to 6.0.1. Release notes Sourced from System.Reflection.Metadata's releases. .NET 6.0.1 Release .NET 6.0 Release .NET 6.0 RC 2 Release .NET 6.0 RC 1 Release .NET 6.0...

dependencies

```c# #nullable enable [Import(AllowDefault = true)] public IBar Bar { get; private set; } [ImportingConstructor] public Foo([Import(AllowDefault = true)] IBar bar) {} ``` Both of these imports lead to potential...

enhancement
analyzers

A class I was modifying was long and the existing constructor wasn't at the top of the file, so I added another. I assume the error was written to the...

enhancement
analyzers

I found a MEF part today that imported the same object via two constructor parameters, but with different names. The same is possible for ~parameter~ property injection. While harmless, it's...

analyzers

The VSMac build started getting a message from Roslyn: ``` CompilerServer: server failed - server rejected the request due to analyzer / generator issues 'analyzer assembly '/Users/kirill/.nuget/packages/microsoft.visualstudio.composition.analyzers/16.9.13/analyzers/dotnet/Microsoft.VisualStudio.Composition.Analyzers.dll' has MVID '3edb20be-00d4-43c3-a073-2a0c7dd2b274'...

bug
analyzers