2010-02-23 2 views

답변

0

nowarn 요소을 대신 사용하십시오. 예 :

<csc output="${build.dir.legacy}Library.dll" 
target="library" 
verbose="${debug}"> 

    <sources basedir="${source.legacy.patterns.dir}"> 
    <include name="**.cs"/> 
    </sources> 

    <nowarn> 
    <warning number="0162,0169,0168,0219,0414,0649,0114,0105"></warning> 
    </nowarn> 

</csc> 
관련 문제