如何在 MacOS 上 运行 .NET Core 3.1 单文件应用程序?
How to run a .NET Core 3.1 single-file app on MacOS?
我在 .NET Core 3.1.200 中有一个应用程序,此 PublishProfile 用于定位 osx-x64:
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>False</PublishReadyToRun>
<PublishTrimmed>False</PublishTrimmed>
</PropertyGroup>
</Project>
我 运行 dotnet publish myapp.cproj /p:PublishProfile=profile.xml
最后 /publish 文件夹包含一个文件 "myapp" (这是正确的,因为 PublishSingleFile=True)。
但是没有扩展名。我如何在 MacOS 上 运行 它?
编辑:我发现我可以使用 ./myapp
从终端简单地 运行 它。但是如何通过双击 Finder 来 运行 呢?现在,它显示:
.NET Core 应用程序(带有用户界面)必须打包为应用程序包,以便 Finder 正确识别。
过程比较漫长,但是Avalonia大佬写了一篇文章,步骤很详细,
https://docs.avaloniaui.net/docs/distribution-publishing/macos
您可以使用 dotnet-bundle
工具来自动化其中的大部分。
我在 .NET Core 3.1.200 中有一个应用程序,此 PublishProfile 用于定位 osx-x64:
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishProtocol>FileSystem</PublishProtocol>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
<RuntimeIdentifier>osx-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishReadyToRun>False</PublishReadyToRun>
<PublishTrimmed>False</PublishTrimmed>
</PropertyGroup>
</Project>
我 运行 dotnet publish myapp.cproj /p:PublishProfile=profile.xml
最后 /publish 文件夹包含一个文件 "myapp" (这是正确的,因为 PublishSingleFile=True)。
但是没有扩展名。我如何在 MacOS 上 运行 它?
编辑:我发现我可以使用 ./myapp
从终端简单地 运行 它。但是如何通过双击 Finder 来 运行 呢?现在,它显示:
.NET Core 应用程序(带有用户界面)必须打包为应用程序包,以便 Finder 正确识别。
过程比较漫长,但是Avalonia大佬写了一篇文章,步骤很详细,
https://docs.avaloniaui.net/docs/distribution-publishing/macos
您可以使用 dotnet-bundle
工具来自动化其中的大部分。