Viktor Hofer
Viktor Hofer
@ericstj can you please chime in on what I posted above: > It ignores attributes that contain a typeof(T) parameter in their constructor when T is not visible outside the...
@marcpopMSFT I just removed the area-infrastructure-libraries review request as we don't own the component that is being changed in this PR.
@vlada-shubina I think you accidentally included two of my PR commits into your branch. Please remove them.
Spoke with @tannergooding about this offline recently and here's our discussion dump. I think we want to refine the `MemberMustExist` rule to not flag for the cases mentioned below. Ideally...
When comparing .NET 6 reference assemblies against .NET 7 reference assemblies, I see 1127 differences being logged because of this issue. This is noise that customers might experience as well...
Another easier workaround, use the .csproj extension instead. Not perfect but it works...
@jzabroski do you use the latest version of this msbuildsdk? I think that error was fixed recently.
An example from my tooling in which I use a module and two factories. ### Current code ```c# namespace Microsoft.DotNet.PackageValidation { [ServiceProvider] [Import(typeof(IServiceLocatorModule))] [Singleton(typeof(CompatibleFrameworkInPackageValidator))] [Singleton(typeof(CompatibleTfmValidator))] [Singleton(typeof(BaselinePackageValidator))] internal partial class ServiceProvider...
cc @dsplaisted
@nohwnd based on this issue (we are still hardcoding `net5.0`), I'm surprised that net6.0 testing works for us in dotnet/runtime. Do you know why? Also do you know how to...