0

我今天遇到的奇怪问题。

先决条件: 已安装:

VS2019
.NET Core 3.0

重现问题的步骤:

Create new "WPF App (.NET Core)"
To the MainWindow.xaml add single TextBlock:
    <TextBlock Text="WPF on Linux" TextWrapping="Wrap"/>
Create new Publish Profile like the following:

在此处输入图像描述

Then save and publish

预计会看到正在发布的应用程序。但是会弹出以下消息:

在此处输入图像描述

这是错误消息文件中提到的内容:

2019-10-28 19:39:43
System.AggregateException: One or more errors occurred. ---> System.Exception: Publishing failed.
   --- End of inner exception stack trace ---
   at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
   at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
   at Microsoft.Publish.Framework.Model.DefaultPublishSteps.<>c__DisplayClass26_0.<IsBuildCompletedSuccessfully>b__2()
   at System.Threading.Tasks.Task`1.InnerInvoke()
   at System.Threading.Tasks.Task.Execute()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Publish.Framework.Model.DefaultPublishSteps.<DefaultCorePublishStep>d__23.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
   at Microsoft.Publish.Framework.ViewModel.ProfileSelectorViewModel.<RunPublishTaskAsync>d__202.MoveNext()
---> (Inner Exception #0) System.Exception: Publishing failed.<---

System.Exception: Publishing failed.

===================

问题是..我做错了什么和/或如何解决这个问题?

重要的提示:

If Deployment Mode is set to "Framework Dependent", and the Target Runtime is "linux-x64" then the project is published into the directory with no issues.
If Deployment Mode is set to "Self-contained", but Target Runtime is "win-x64", then deployment works with no issues.
4

1 回答 1

2

错误在构建输出窗口中:

没有可用于指定 RuntimeIdentifier 'linux-x64' 的 Microsoft.WindowsDesktop.App.WPF 运行时包

Linux 不支持 WPF,只有 Windows 支持。

于 2019-10-29T02:37:36.737 回答