roslyn-sdk
roslyn-sdk copied to clipboard
Roslyn-SDK templates and Syntax Visualizer
Currently, the latest stable on NuGet doesn't contain `ReferenceAssemblies.Net.Net70`. Can 1.1.2 be released on NuGet.org? @arkalyanms @jmarolf @sharwell
I am multi-targeting my templating library [Weave](otac0n/Weave) and have had to workaround what appears to be a bug in the debug launch profile for source generators. You can find a...
The `AnalyzerTest.MatchDiagnostics` is implemented recursively with a local function "RecursiveMatch", resulting in an access violation of the .NET 8.0 RC runtime during a stack overflow when testing my source generator...
Using version 1.1.2-beta1.23509.1 of the code generation testing assemblies, it appears that the `GeneratedSources` is being compared in order, as opposed to just having the same contents. That's a problem...
Currently this scenario fails with: > Assert.IsTrue failed. expected 'TestState.Sources' to be non-empty My use case is testing a generator where I only need to supply an additional file. For...
Hi! I am writing some code fix tests in which I want to have shared files between projects and wonder if you can offer some help on how to do...
Writing custom analyzers becomes more and more popular, so testing should be easy to use and to customize out of the box Functionality of the testing framework is great, however...
Right now in order to test diagnostic suppressor it is required to use code instead of more visual markup. It might be a good thing to add a pair of...
Per https://github.com/dotnet/runtime/issues/68353, not respecting cancellation token has performance impact. The testing should assert that cancelling will happen in a timely manner.
For now, I'm using the Microsoft.CodeAnalysis.Testing and ReferenceAssemblies class to resolve packages and add them to Compilation. But this does not work for packages that contain source code generators. Is...