Update of /cvsroot/mocklib/netmocklib/bldfiles
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7433/bldfiles
Modified Files:
project.build
Log Message:
trying to get FxCop working.
Index: project.build
===================================================================
RCS file: /cvsroot/mocklib/netmocklib/bldfiles/project.build,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** project.build 17 Sep 2006 15:03:38 -0000 1.3
--- project.build 17 Sep 2006 16:35:13 -0000 1.4
***************
*** 80,84 ****
</target>
! <target name="codecoverage" depends="compile">
<mkdir dir="${codecov}"/>
<mkdir dir="${reports}"/>
--- 80,96 ----
</target>
! <target name="fxcop" depends="compile" description="Runs FxCop">
!
! <exec program="${tools}/FxCop/fxcopcmd.exe"
! commandline="/p:${tools}/FxCop/ProjectRules.FxCop /c"/>
! <!-- Unfortunately, neither fail the build on warnings -->
! <!--fxcop directOutputToConsole="true" failonerror="true">
! <targets>
! <include name="${assemblies}/${comp.name}" />
! </targets>
! </fxcop-->
! </target>
!
! <target name="codecoverage" depends="compile" description="Runs Testall with code coverage report">
<mkdir dir="${codecov}"/>
<mkdir dir="${reports}"/>
***************
*** 102,106 ****
</target>
! <target name="all" depends="winsvc.staging, testall" description="Builds everything, puts in web.staging and runs testall"/>
<target name="clean" depends="undeployWinSvc" description="Cleans out files generated from this build file">
--- 114,118 ----
</target>
! <target name="all" depends="winsvc.staging, fxcop, codecoverage" description="Builds everything, puts in web.staging and runs testall"/>
<target name="clean" depends="undeployWinSvc" description="Cleans out files generated from this build file">
|