Generate trx file through code

4.6k views Asked by At

I want to manually generate TRX file through for my code.

Is there any program which will be used for this purpose. If not then how to do it?

1

There are 1 answers

1
btlog On

This post http://blogs.msdn.com/b/dhopton/archive/2008/06/12/helpful-internals-of-trx-and-vsmdi-files.aspx talks about trx and vmdi files and is a useful starting point. You can find the xsd on a computer with visual studio installed at %VSINSTALLDIR%\xml\Schemas\vstst.xsd.

If you plan to open your custom trx files in VS, not that I can think for any other good reason to create them, the errors you will get from VS for non compliant files is almost no existent. VS seems to require more than the minimum set defined in the XSD.

Good luck.