I need to replace characters in a variable I am passing to an exec task within msbuild 4. Specifically, I need to replace all occurrences of backslashes \
with forward-slashes /
in the $(MSBuildProjectDirectory)
variable.
eg:
<Target Name="DoStuff">
<Exec Command="stuff.exe $(MSBuildProjectDirectoryWithSlashesFixed)/SomeFile.txt" />
</Target>
The executable being called is an oracle component that can't deal with slashes in windows format.
I've had a look at Property Functions, but as System.String.Replace()
is an instance method rather than a static method, it seems it can't be used for my needs.
Any ideas?