1 在项目根目录添加xxx.desktop文件,文件内容;
[Desktop Entry] Name=xxx Type=Application Exec=/usr/share/xxx/xxx Icon=/usr/share/icons/xxx.png
2 在项目根目录添加应用程序图标文件“xxx.png”;
3 安装 .net打包deb工具:打开cmd 执行命令;
dotnet tool install --global dotnet-deb
4 打开cmd命令行窗口,cd 进入项目根文件夹,执行打包命令;
#在项目中安装打包工具,会在项目引用一个包。 dotnet restore -r linux-x64 #将项目的目标运行时还原为linux-x64 dotnet deb install #执行打包发布,输出.deb文件。 dotnet msbuild xxx.csproj /t:CreateDeb /p:TargetFramework=net6.0 /p:RuntimeIdentifier=linux-x64 /p:Configuration=Release
5 在bin/Release/net6.0文件夹下找到deb文件,拷贝到银河麒麟系统上安装;
标签:操作系统,项目,xxx,x64,linux,dotnet,deb,安装包,Avalonia From: https://www.cnblogs.com/qushi2020/p/16951214.html