msbuild

Is there a way to print a new-line when using <Message...>?


I wanna write <Message Text="Line1\nLine2\nLine3" /> but \n seems not to be working. What should I replace \n with?

(I read in the books they said that to print @ and % we use %40 and %25, so I guess the should be a number for the new-line).


Solution

  • CR = 0x0D or 13

    LF = 0x0A or 10