ShaharPrishMSFT
ShaharPrishMSFT
The problem is that there are missing assemblies in: C:\Program Files\dotnet\sdk\5.0.300-preview.21180.15 Which is what DNT gets targeted to. So far found 2 assemblies missing, but this does't seem to be...
Note that we used to have this rule in our code and have scaled back on it (we still use it in some places). The problem with this is that...
The ImportDirectoryBuildProps is being ignored.. :\ How do I fix that?
I could not make those properties affect the build - it would always look at my .props file What I ended up doing is have an empty Directory.Build.props file in...
Note that central package management uses VersionOverride to give a diff version. Not the Version attribute.
I have a PR that fixes this: https://github.com/RicoSuter/DNT/pull/122
@bkromhout : I dont know of a workaround. I currently use the one I compiled for the PR when I need to run. Waiting for it to get merged :(
I found ReferenceSource.NetStandard2_0 After adding it, I am getting the following: RoslynTestKit.RoslynTestKitException : Input document contains errors: TestDocument0(2,2): error CS0012: The type 'Attribute' is defined in an assembly that is...
Still not working after adding all three: ``` var fixture = RoslynFixtureFactory.Create( new AnalyzerTestFixtureConfig() { References = [ ReferenceSource.FromType(), ReferenceSource.FromType(), ReferenceSource.NetStandard2_0, ], }); ``` Error is: Message: RoslynTestKit.RoslynTestKitException : Input...