您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么用Nant和Nunit構建C#代碼”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用Nant和Nunit構建C#代碼”吧!
以前沒使用Nant和Nunit構建C#代碼的自動化構建,今天自己寫了一個C#程序,想用Nant和Nunit構建C#代碼。可寫好build文件后運行UnitTest時遇到了麻煩。命令行提示如下:
Could not load file or assembly 'nunit.framework, Version=2.4.3.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The system cannot find the file specified.
查了一下資料解決了這個問題。
解決方法是:
一、在該程序的config文件(如果程序名是money.dll,則該文件名為money.dll.config)中加入如下代碼:
<?xmlversionxmlversion="1.0"encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBindingxmlnsassemblyBindingxmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentitynameassemblyIdentityname="nunit.framework"
publicKeyToken="96d09a1eb7f44a77"culture="Neutral"/><bindingRedirectoldVersionbindingRedirectoldVersion="2.0.6.0"newVersion="2.4.3.0"/>
<bindingRedirectoldVersionbindingRedirectoldVersion="2.1.4.0"newVersion="2.4.3.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
二、使用VS2005提供的gacutil把nant.core.dll 和 nant.framework.dll注冊一下。
具體做法是:
1、在window開始菜單用運行VS所帶的Visual Studio 2005 Command Prompt。
2、切換到nunit的bin目錄下
3、順序運行下列命令
gacutil /i nunit.core.dll
// 注冊core
gacutil /i nunit.framework.dll
//注冊framework
gacutil /l
//查看是否注冊上
三、大功告成。
現在運行 nant unittest 就完事大吉。
附 nant 的 build 文件如下:
<?xmlversionxmlversion="1.0"?> <projectnameprojectname="CSharpMoney"default="ut"> <propertynamepropertyname="output.dir"value="../bin"/> <propertynamepropertyname="output.dll"value="../bin/cs-money.dll"/> <propertynamepropertyname="reports.dir"value="../reports"/> <targetnametargetname="clean"> <deletedirdeletedir="${output.dir}"/> <deletedirdeletedir="${reports.dir}"/> </target> <targetnametargetname="copyfile"depends="clean"> <mkdirdirmkdirdir="${output.dir}"unless="${directory::exists(output.dir)}"/> <copyfilecopyfile="../nunit/bin/nunit.framework.dll"todir="${output.dir}" if="${file::exists('nunit/bin/nunit.framework.dll')}"/> </target> <targetnametargetname="build"depends="copyfile"> <csctargetcsctarget="library"output="${output.dll}"debug="true"> <sources> <includenameincludename="*.cs"/> </sources> <references> <includenameincludename="../nunit/bin/nunit.framework.dll"/> </references> </csc> </target> <targetnametargetname="ut"depends="build"> <mkdirdirmkdirdir="${reports.dir}"/> <execprogramexecprogram="..NUnitunit-console.exe"> <argvalueargvalue="${output.dll}"/> <argvalueargvalue="/config=cs-money.dll.config"/> <argvalueargvalue="/xml=${reports.dir}TestReport-Unit.xml"/> <argvalueargvalue="/nologo"/> <argvalueargvalue="/noshadow"/> </exec> </target> </project>
感謝各位的閱讀,以上就是“怎么用Nant和Nunit構建C#代碼”的內容了,經過本文的學習后,相信大家對怎么用Nant和Nunit構建C#代碼這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。