What is the best way to parse Visual Studio .csproj file using python, for further modification?
It is some .csproj file:
...
<ItemGroup>
<Reference Include="SomeAssembly, Version=1.1.1.1"/>
...
</ItemGroup>
...
I want to insert this:
<HintPath>path/to/SomeAassembly.dll</HintPath>
into the <Reference/> node.