views:

129

answers:

1

Are there any community MSBuild tasks for Perforce (e.g. even just basic syncing)?

Neither the MSBuild Community tasks or MSBuildExtenstion pack seem to have any.

+3  A: 

It looks like the open source MSBuild Contrib project has some p4 tasks. I've never used them before so I can't say how well they work. If they don't work you can always write your own tasks, they are pretty easy if you are able to write .NET code. If you don't want to go that route you can use the Exec task to execute command line commands to perform those operations for you.

Sayed Ibrahim Hashimi
Those tasks actually use nAnt - they aren't native MSBuild tasks
Gus Paul