2012-04-19 65 views
0

我想使用南特建立一個項目和導入的dll文件來執行NUnit的。使用南特建造項目和運行NUnit的

但我卻不知道如何編寫XML代碼構建的csproj文件。

這裏是我的xml:


<?xml version="1.0"?> 
<project name="Aaron.Guo.Second.Project" default="build" basedir="."> 
    <property name="basename" value="A"/> 
    <property name="debug" value="true"/> 
    <target name="build"> 
    <csc target="library" debug="false" warnaserror="true" output="D:/A/bin/A1.dll"> 
     <sources basedir="D:/A"> 
     <include name="**/*.cs" /> 
     </sources> 
     <references> 
     <include name="D:/A/bin/*.dll"/> 
     </references> 
    </csc> 
    </target> 
</project> 

我只知道 「包括名稱」 可以建立CS文件

,但它也表明不能參考使用重複的頁面沒有自動跳轉

我把參考文件中的d:/ A /濱/ directionary。

我怎麼能寫XML?

回答

相關問題