【喬樑】用Nant和Nunit構建C#專案
以前沒使用Nant和Nunit建立過C#程式碼的自動化構建,今天自己寫了一個C#程式,想用Nant和Nunit構建C#程式碼。可寫好build檔案後執行UnitTest時遇到了麻煩。命令列提示如下:
查了一下資料解決了這個問題。
解決方法是:
一、在該程式的config檔案(如果程式名是money.dll,則該檔名為money.dll.config)中加入如下程式碼:
二、使用VS2005提供的gacutil把nant.core.dll 和 nant.framework.dll註冊一下。具體做法是:
1、在window開始選單用執行VS所帶的Visual Studio 2005 Command Prompt。
2、切換到nunit的bin目錄下
3、順序執行下列命令
三、大功告成。
現在執行 nant unittest 就完事大吉。
附 nant 的 build 檔案如下:
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)中加入如下程式碼:
xml version="1.0" encoding="utf-8" ?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" />
<bindingRedirect oldVersion="2.0.6.0" newVersion="2.4.3.0" />
<bindingRedirect oldVersion="2.1.4.0" newVersion="2.4.3.0" />
dependentAssembly>
assemblyBinding>
runtime>
configuration>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" />
<bindingRedirect oldVersion="2.0.6.0" newVersion="2.4.3.0" />
<bindingRedirect oldVersion="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 //檢視是否註冊上
gacutil /i nunit.framework.dll //註冊framework
gacutil /l //檢視是否註冊上
三、大功告成。
現在執行 nant unittest 就完事大吉。
附 nant 的 build 檔案如下:
xml version="1.0"?>
<project name="CSharpMoney" default="ut">
<property name="output.dir" value="../bin" />
<property name="output.dll" value="../bin/cs-money.dll" />
<property name="reports.dir" value="../reports"/>
<target name="clean">
<delete dir="${output.dir}"/>
<delete dir="${reports.dir}"/>
target>
<target name="copyfile" depends="clean">
<mkdir dir="${output.dir}" unless="${directory::exists(output.dir)}" />
<copy file="../nunit/bin/nunit.framework.dll" todir="${output.dir}"
if="${file::exists('nunit/bin/nunit.framework.dll')}" />
target>
<target name="build" depends="copyfile">
<csc target="library" output="${output.dll}" debug="true">
<sources>
<include name="*.cs" />
sources>
<references>
<include name="../nunit/bin/nunit.framework.dll" />
references>
csc>
target>
<target name="ut" depends="build">
<mkdir dir="${reports.dir}"/>
<exec program="..NUnit unit-console.exe">
<arg value="${output.dll}"/>
<arg value="/config=cs-money.dll.config"/>
<arg value="/xml=${reports.dir}TestReport-Unit.xml"/>
<arg value="/nologo"/>
<arg value="/noshadow"/>
exec>
target>
project>
<project name="CSharpMoney" default="ut">
<property name="output.dir" value="../bin" />
<property name="output.dll" value="../bin/cs-money.dll" />
<property name="reports.dir" value="../reports"/>
<target name="clean">
<delete dir="${output.dir}"/>
<delete dir="${reports.dir}"/>
target>
<target name="copyfile" depends="clean">
<mkdir dir="${output.dir}" unless="${directory::exists(output.dir)}" />
<copy file="../nunit/bin/nunit.framework.dll" todir="${output.dir}"
if="${file::exists('nunit/bin/nunit.framework.dll')}" />
target>
<target name="build" depends="copyfile">
<csc target="library" output="${output.dll}" debug="true">
<sources>
<include name="*.cs" />
sources>
<references>
<include name="../nunit/bin/nunit.framework.dll" />
references>
csc>
target>
<target name="ut" depends="build">
<mkdir dir="${reports.dir}"/>
<exec program="..NUnit unit-console.exe">
<arg value="${output.dll}"/>
<arg value="/config=cs-money.dll.config"/>
<arg value="/xml=${reports.dir}TestReport-Unit.xml"/>
<arg value="/nologo"/>
<arg value="/noshadow"/>
exec>
target>
project>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-364792/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 你竟然沒用 Maven 構建專案?Maven
- 用 vue2 和 webpack 快速建構 NW.js 專案VueWebJS
- 用mobx構建大型專案的最佳實踐
- webpack快速構建專案Web
- Maven 構建 Java 專案MavenJava
- Maven Web專案構建MavenWeb
- JAVA專案映象構建Java
- CMAKE 《window構建專案》
- 用mobx構建大型專案的最佳實踐(2)
- 喬樑:持續交付將變成必備能力(圖靈訪談)圖靈
- 喬樑:“持續交付”不是守業者的遊戲(圖靈訪談)遊戲圖靈
- 如何構建「大型 Node.js 專案」的專案結構?Node.js
- 使用Maven構建Java專案MavenJava
- Gradle之多專案構建Gradle
- 使用SBT構建Scala專案
- 使用Dockerfile構建django專案DockerDjango
- 2. vite 構建專案Vite
- 【CuteJavaScript】Angular6入門專案(1.構建專案和建立路由)JavaScriptAngular路由
- Vue(1):用Vue-cli構建Vue3專案Vue
- 用spm2構建seajs專案的過程JS
- 構建dubbo分散式平臺-maven構建根專案分散式Maven
- 【CuteJavaScript】Angular6入門專案(2.構建專案頁面和元件)JavaScriptAngular元件
- 小白學習Vue(11)--環境安裝及專案構建 | webstorm構建vue專案VueWebORM
- 使用 webpack 構建小程式專案Web
- 如何使用Docker構建前端專案Docker前端
- vue-cli構建vue專案Vue
- gulp構建es6專案
- 如何構建大型的前端專案前端
- 如何使用Webpack工具構建專案Web
- webpack2 專案構建一Web
- vue專案構建與實戰Vue
- eclipse 使用 maven 構建專案EclipseMaven
- 使用Gradle構建Java專案GradleJava
- webpack進階構建專案(一)Web
- Gradle構建多模組專案Gradle
- 單元測試之道C#版:使用NUnitC#
- ABAP system landscape和vue專案webpack構建的最佳實踐VueWeb
- Gradle構建SpringBoot專案GradleSpring Boot