我尝试为以下 RID ubuntu.15.04-x64、ubuntu.15.10-x64 和 ubuntu.16.10-x64 构建 .Net 核心自包含应用程序。然后构建失败并出现以下错误。
无法使以下项目可运行:SelfContainedApp (.NETCoreApp,Version=v1.0) 原因:在包图中找不到预期的 coreclr 库。请尝试再次运行 dotnet restore。
但是 .Net 核心自包含应用程序的构建和发布对于 ubuntu.14.04-x64 和 ubuntu.16.04-x64 等 RID 运行良好。
这有什么问题。提前致谢。
下面是我的.xproj。
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>a2b39d97-00e4-4c6d-a734-ccfa6ca1e883</ProjectGuid>
<RootNamespace>SelfContainedApp</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<ItemGroup>
<DnxInvisibleContent Include="bower.json" />
<DnxInvisibleContent Include=".bowerrc" />
</ItemGroup>
<Import Project="$(VSToolsPath)\DotNet.Web\Microsoft.DotNet.Web.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>