.net - Exclude code coverage in assemblyinfo file -


i want know how can set exclude code coverage attribute few files assemblyinfo file? aware can set attribute @ class level in case not want go each of these classes , set attribute.

i set attribute @ higher level or @ single place can manage this. believe can in assemblyinfo file not sure.

use .runsettings file configure code coverage specified here:

http://msdn.microsoft.com/en-us/library/jj159530.aspx

in file use "source" element exclude source files want leave out.

        <sources>           <exclude>             <source>.*\\model\\.*</source>           </exclude>         </sources> 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -