[Rider] Editing .csproj from plugin
已回答
Hi,
i need to add ItemGroup to .csproj file or add child elements to existing one, like
I have access to JetBrains.ProjectModel.IProject from backend C# code and to com.intellij.openapi.project.Project from frontend Kotlin code
What's the correct way to do this excluding manual writing text to file by stream etc.?
请先登录再写评论。
The easiest way to do it - implement the code like the next one in the backend:
Evgeniy Stepanov That's what I need. Thanks!