How to extract the SVN Commit logs to a notepad from MSBuild
Can anybody help me to extract/export the comments(Comments which we include while committing the changes to SVN) from SVN to开发者_如何学Python a notepad using MSBuild.
I added
<Exec Command="svn log ..\properties\assemblyinfo.cs --xml > ..\releasenotes.xml"/>
to my msbuild file. I'm updating assemblyinfo automatically with the SVN version number else where in the msbuild file.
This is xml format but if you remove the --xml it will be plain text.
精彩评论