【发布时间】:2019-06-29 10:04:24
【问题描述】:
我正在尝试使用 webdeploy 将我的 .net core 2.1 应用程序部署到 IIS 服务器,但是在发布应用程序后,没有文件夹和文件,包括来自 wwwroot 之外的发布目录和 View 文件夹中的文件夹和文件,我只看到 2 View页面和这些视图来自主项目以外的其他库,但没有生成属于主项目的视图。
程序.cs
public static void Main(string[] args)
{
CreateWebHostBuilder(args).UseDefaultServiceProvider(options =>
options.ValidateScopes = false).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
Startup.cs 部分
// For those 2 Views that are coming from another assembly (this 2 views are present in the Views folder of publish directory)
var myAssembly = typeof(Component).Assembly;
services.AddMvc()
.SetCompatibilityVersion(CompatibilityVersion.Version_2_1)
.AddApplicationPart(myAssembly);
services.Configure<RazorViewEngineOptions>(options =>
{
options.FileProviders.Add(new EmbeddedFileProvider(myAssembly, "MyNS"));
});
//For serving static files from folder call Contents, outside of wwwroot
app.UseStaticFiles();
app.UseStaticFiles(new StaticFileOptions
{
FileProvider = new PhysicalFileProvider(
Path.Combine(_env.ContentRootPath, "Contents")),
RequestPath = "/Contents"
});
.csproj
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UserSecretsId>........</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Tools" Version="1.1.0-preview4-final" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.0-preview3-35497" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.0-preview3-35497">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.0-preview3-35497" />
<PackageReference Include="morelinq" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Proj.Business\Proj.Business.csproj" />
<ProjectReference Include="..\Proj.Common\Proj.Common.csproj" />
<ProjectReference Include="..\Proj.Data\Proj.Data.csproj" />
<ProjectReference Include="..\MyNS\MyNS.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Contents\" CopyToPublishDirectory="PreserveNewest" />
<Folder Include="PrivateContents\" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Project>
当我将应用发布到 Azure 应用服务时,我得到了相同的结果,我的应用出了什么问题?部署 asp.net core 2.1 应用程序后还有什么需要注意的吗?请帮忙。
【问题讨论】:
-
视图被编译成 DLL,除非你阻止它们的编译,否则你不会看到它们(不推荐)
-
是的,我知道,关于文件夹和文件没有被复制的任何想法?谢谢。
-
你在说什么文件夹?根据
Folder指令,您的Contents和PrivateContents文件夹应包含在内,但除非您也明确包含这些目录,否则不会包含任何其他目录。 -
by
Folder指令不包括Content和PrivateContents文件夹,它包括Content指令
标签: c# asp.net-core-2.1 publishing webdeploy