dotnet / roslynator

Roslynator is a set of code analysis tools for C#, powered by Roslyn.

Home Page:https://josefpihrt.github.io/docs/roslynator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About new packages

bdovaz opened this issue · comments

@josefpihrt the new packages are useful in Unity? Unity has its own .NET compiler, you don't compile the code from the VS IDE, the IDE "only" serves to code and attach to Unity processes.

Because I understand that from what you put the use cases are these? Or am I misunderstanding?

Thank you.

Yes, that's right.

I don't know how development in Unity works. Do you use VS, VS Code or does it have its own IDE?

Anyway, the purpose of these packages is to have access to refactorings and code fixes for compiler diagnostic in an environment where you cannot use Roslynator IDE extension (VS or VS Code). For example the development with C# Dev Kit in VS Code. C# Dev Kit does not support loading of Roslyn features from the extension so only way is to use nuget packages.

Ok, thank you!