CastleWindsorIoCを利用しようとしています。私は非常に単純なアプリケーションを持っています。私のインターフェースはTest.Services名前空間に存在します。コンパイル時に次の例外が発生します。
タイプ名Test.Services.IParse、Test.Servicesが見つかりませんでした。」
これは私のapp.configです:
<configuration>
<configSections>
<section name="castle"
type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler,
Castle.Windsor" />
</configSections>
<castle>
<components>
<component id="HtmlTitleRetriever"
type="Test.HTMLTitleRetriever, Test">
</component>
<component id="FileParser"
service="Test.Services.IParse, Test.Services"
type="Test.FileParser,
Test">
</component>
<component id="FileDownloader"
service="Test.Services.IDownload, Test.Services"
type="Test.FileDownloader, Test">
</component>
</components>
</castle>
誰かが私が欠けているものを教えてもらえますか?
ありがとう
-ニック