如何将静态文件包含到可重用的RCL中

时间:2018-10-25 18:02:49

标签: javascript asp.net-mvc asp.net-core-2.1 razor-class-library

我正在尝试制作一个可以在几个ASP.NET Core MVC项目中使用的RCL。到目前为止一切顺利...直到我尝试将所需的JavaScript包含到RCL中。关于此主题的文档很少甚至没有。我最好的尝试是尝试以下示例:5. Final Solution

但是在构建库时出现此错误:

enter image description here

这是项目文件和库的结构:

enter image description here

感谢您的帮助。

1 个答案:

答案 0 :(得分:3)

现在我有一些空闲时间,我将回答我自己的问题。也许对某人有用。

最后,我使用EmmbededResources解决了这个问题,而没有将EmbeddedFilesManifest设置为ianbusko pointed out in Github

首先,我为IApplicationBuilder类创建了扩展名:

namespace Dashboard.Lib.Extensions
{
    public static class IApplicationBuilderExtension
    {
        public static void UseDashboardScripts(this IApplicationBuilder builder)
        {
            var embeddedProvider = new EmbeddedFileProvider(typeof(Areas.Dashboard.ViewComponents.DashboardViewComponent)
                .GetTypeInfo().Assembly, "Dashboard.Lib.Scripts");

            builder.UseStaticFiles(new StaticFileOptions()
            {
                FileProvider = embeddedProvider,
                RequestPath = new PathString("/Scripts")
            });
        }
    }
}

然后我将javascript文件添加到项目文件中:

<PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <GenerateEmbeddedFilesManifest>false</GenerateEmbeddedFilesManifest>
 </PropertyGroup>

 <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.3" />
    <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
    <PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="2.1.1" />
 </ItemGroup>

 <ItemGroup>
    <EmbeddedResource Include="Scripts/**/**/**/*" Pack="true" />
 </ItemGroup>

在RCL视图中,包含的javascript如下:

@section Scripts{
    @{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
    <script type="text/javascript" src="~/Scripts/pagination.js"></script>
    <script type="text/javascript" src="~/Scripts/checkdigit-validator.js"></script>
    <script type="text/javascript" src="~/Scripts/rut-validation.js"></script>
}

最后,在主MVC项目的Statup.cs中,您只需包含以下内容:

app.UseStaticFiles();
app.UseDashboardScripts();