参照しているdllの中にあるクラスを参照しようとしているのですが、
'ClassLibrary' が見つかりませんでしたというエラーがでてしまいます。
dllはクラスライブラリプロジェクトで作っています。
どうすればよいでしょうか。

<#@ template debug="false" hostspecific="false" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="ClassLibrary" #>
<#@ output extension=".txt" #>

<#
    string strText = ClassLibrary.Common.GetVersionData();
#>