Amadeusz Sadowski

Results 101 comments of Amadeusz Sadowski

Well, just fork, edit readme and open a PR :) I don't have any additional requirements.

I think for now I can just add the `awesome-list` tag for better search, but since I've included "awesome" in repo description, I think it should work for SEO -...

It'd be great if you could open a PR for that, are you ok with that?

Hi, what you want to do is indeed doable as @AArnott guessed. ### Suggestion But first, let me suggest to you the new C# Source Generators feature shipping with .NET...

So let's consider a couple of scenarios for C#8 projects: 1. Project is nullable-oblivious - no problem, same as pre-8.0 2. Project is nullable-enabled, generator is oblivious: - case as...

> IMO we shouldn't try to do (much) more magic than Roslyn would be willing to do. Agreed. > The only mandatory goal IMO is this: > Make it possible...

> pass the entire compilation command line to our task and ask Roslyn to parse it @AArnott that'd be amazing, but I have no idea how to do that. 🤷‍♂️

I'll paste my suggestion from the mentioned PR: --- I think this should actually be done as a part of the framework (`CodeGeneration.Roslyn`). I imagine there would be an assembly...

@frblondin There is actually an intermediate solution: `` tags. You can decorate the hand-written partial class with this tag, and include a hand-written XML file with all the comments. See...

I'm debating whether this feature should depend on `[assembly: ...]` attributes or be configurable via project properties, e.g. ```xaml CS1591 ``` I think Project property is more appropriate, scales up...