我正在使用 Nancyfx 和 Visual Studio 2012 中的 Razor 视图引擎在 C# 中创建一个黑杰克程序。Visual Studios Intelisense 工作,但我得到这些 Razor 编译错误。我尝试在 app/web.config 中指定名称空间,但没有结果。
Error Details
Error compiling template: Views/Game.cshtml
Errors:
[CS0246] Line: 1 Column: 11 - The type or namespace name 'Black_Jack' could not be found (are you missing a using directive or an assembly reference?)
[CS0246] Line: 24 Column: 73 - The type or namespace name 'Black_Jack' could not be found (are you missing a using directive or an assembly reference?)
Details:
@using Black_Jack.Models
@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase<Game>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
@{
foreach(var player in @Model.Players.players)
{
foreach(var card in player.Hand.Cards)
{
<p>@card.Name</p>
}
}
}
</body>
</html>