using ディレクティブは Stimulsoft アセンブリを見つけることができませんでした。
@using System.Web.UI.WebControls
@using NursingHomeStock.Resources
@using Stimulsoft.Report.Mvc
@{
Layout = "~/Views/Shared/_Layout.cshtml";
ViewBag.Title = GlobalResources.Reports;
}
<h2>@ViewBag.Title</h2>
@Html.Stimulsoft().StiMvcViewerFx(new StiMvcViewerFxOptions
{
ActionGetReportSnapshot = "GetStatsForNursingHome",
ActionGetLocalization = "GetLocalization",
ActionExportReport = "ExportReport",
Width = Unit.Percentage(100),
Height = Unit.Pixel(600),
Zoom = 75
})
Embed Interop Types 属性を true に設定すると、アセンブリが見つかりますが、コンパイル時に次のエラーが発生します。
Error 1 Cannot embed interop types from assembly 'c:\svn\lib\Stimulsoft\2013.3.1800\Stimulsoft.Report.Mvc.dll' because it is missing either the 'ImportedFromTypeLibAttribute' attribute or the 'PrimaryInteropAssemblyAttribute' attribute c:\svn\lib\Stimulsoft\2013.3.1800\Stimulsoft.Report.Mvc.dll NursingHomeStock
以下のアセンブリを参照しました。
- Stimulsoft.Base
- Stimulsoft.Report
- Stimulsoft.Report.Mvc
参照がありませんか?
MVC5.1を使用しています
よろしく