[Rider] Editing .csproj from plugin
Answered
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.?
Please sign in to leave a comment.
The easiest way to do it - implement the code like the next one in the backend:
Evgeniy Stepanov That's what I need. Thanks!