Visual Studio 2019 for Windows で .NET Core アプリを操作する場合、アプリを Windows、Linux、または Mac パッケージ、フレームワーク依存または自己完結型として公開するオプションがあります。明らかな何かが欠けているに違いありませんが、Visual Studio for Mac で同じことを行うにはどうすればよいですか? オプションを要求せずに単に公開するだけです。
公開プロファイルを手動で編集して、最後の 2 行を含めようとしました。
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebPublishMethod>FileSystem</WebPublishMethod>
<PublishProvider>FileSystem</PublishProvider>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>AnyCPU</LastUsedPlatform>
<publishUrl>../../dist</publishUrl>
<ExcludeAppData>False</ExcludeAppData>
<DeleteExistingFiles>true</DeleteExistingFiles>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifier>linux-64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
</PropertyGroup>
</Project>
しかし、それらは効果がないようです。