2011-01-13 71 views
1

當試圖評論轉換爲XML文檔,如:編譯到XML文檔與CSC - 錯誤

/// <summary> 
/// Retrieve request type 
/// </summary> 
/// <returns>Collection</returns> 

我得到許多錯誤。 (名稱已更改爲保護無辜者。)

它抱怨Abba.Domain,Abba.Service和Abba.Style.Manager

using System; 
using System.Collections.Generic; 
using System.Collections; 
using System.Linq; 
using System.Web; 
using Abba.Domain; 
using Abba.Service; 
using Abba.Style.Manager; 

實例錯誤:

c:\Users\waldo\Documents\App_Test\App_Code\Section_A\Abba.cs(6,11): error CS0234 
4: The type or namespace name 'Domain' does not exist in the namespace 'ABA' 
     (are you missing an assembly reference?) 

error CS0246: The type or namespace name 'NAME' could not be found 

我錯過了什麼? (除了C#的更多知識)

回答

1

如果您的Abba.Domain,Abba.Service和Abba.Style.Manager位於其他.cs文件中,請確保將它們添加到csc輸入中。

類似:

csc /out:abba.dll /target:library /doc:abba.xml abba.domain.cs abba.service.cs abba.style.manager.cs abba.cs 

,如果你有一個目錄中的cs文件的剩餘部分還可以,如果你阿爸使用/recurse:lib/*.cs

同樣,*。已經編譯在一個DLL中,你可能想要添加/引用選項。

一旦所有的參考文獻解決,你應該沒問題。