我正在尝试重新创建设置项目,如http://subsonicproject.com/docs/Setting_up_SubSonic_3.0的视频中所示
我正在使用visual c# 2008 express edition并按照所有步骤操作,但出现了问题。
settings.ttinclude 如下:
const string Namespace = "WSC";
const string ConnectionStringName = "WSC";
//This is the name of your database and is used in naming
//the repository. By default we set it to the connection string name
const string DatabaseName = "WSC";
//this is a list of tables you don't want generated
string[] ExcludeTables = new string[]{
"sysdiagrams",
"BuildVersion",
};
.. 我正在添加 subsonic.core.dll 引用并使用以下设置创建 app.config:
我还将在 t4 模板目录中找到的 ActveDirectory 文件夹复制到解决方案中。.cs 文件应该在此处生成,但它们不是。
任何人都可以帮忙吗?
问候,
阿德里安