Using TFS, you want to run a command line tool to perform obfuscation

First time using explorer command and I want to add a build task that will run the command line tool to obfuscate the build. I guess this will be one of the last tasks.

How can I do this using Team Explorer?

0


source to share


1 answer


We are using Xenocode Postbuild. For obfuscation, we use a custom build task that we wrote in a DLL that we call from the build configuration in TFS.



So, we've created a custom task that wraps the PostBuild command line. We are passing this task variable from MSBUILD target . This target is part of the project file associated with our assembly build definition.

+1


source







All Articles