MacOsPublish 1.5.1

dotnet tool install --global MacOsPublish --version 1.5.1
                    
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest
                    
if you are setting up this repo
dotnet tool install --local MacOsPublish --version 1.5.1
                    
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=MacOsPublish&version=1.5.1
                    
nuke :add-package MacOsPublish --version 1.5.1
                    

MacOsPublish

MacOsPublish is a command-line tool to build, bundle, codesign, and optionally notarize .NET macOS applications in a unified .app bundle that includes both x64 and arm64 binaries.


πŸ•ΈοΈ Projet Web site

https://github.com/CastelloBrancoTecnologia/MacOsPublish


πŸ“¦ nuget package

https://www.nuget.org/packages/MacOsPublish


πŸ› οΈ Installation

To install MacOsPublish as a global .NET tool:

dotnet tool install --global MacOsPublish

Or update:

dotnet tool update --global MacOsPublish

You can also install it locally in your project:

OBS: If you cant run macospublish after installation please check if you path isnt configured

You can configure path if your shell is zsh with command like

    echo 'export PATH="$PATH:$HOME/.dotnet/tools"' >> ~/.zshrc
dotnet tool install MacOsPublish

To check if the tool is available:

macospublish --help

🧱 Bundle Structure Generated

YourApp.app
└── Contents
    β”œβ”€β”€ MacOS
    β”‚   β”œβ”€β”€ osx-arm64/         <- your arm64 build
    β”‚   β”œβ”€β”€ osx-x64/           <- your x64 build
    β”‚   β”œβ”€β”€ shared/            <- shared binaries (deduplicated)
    β”‚   └── YourApp.sh         <- launcher script (auto-detects CPU arch)
    β”œβ”€β”€ Resources/             <- assets (icons, images, etc.)
    └── Info.plist

βš™οΈ Usage

macospublish <PROJECT>  [...options]

Arguments

| Argument | Description | |-----------------------------------|---------------------------------------------------------------------------| | <PROJECT> | Path to .csproj or .sln file. | | --output <OUTPUT_DIR> | Destination output folder (default: bin/UniversalBundleApp). | | --identity <IDENTITY> | Apple Developer identity. Empty to skip code signing. | | --installer-identity <IDENTITY> | Apple Installer identity (used for .pkg generation). | | --notarize <PROFILE> | Submit the .dmg to Apple Notary Service. Requires xcrun notarytool. | | --plist-dir <path> | the directory of plist files (info/entitlements) if not in current dir.. | | --AssemblyVersion <version> | the version to put in AssemblyVersion. | |--dry-run | Dont Generate Any Files. | |-h, --help | Display help. | |--version` | Display version. |


πŸ” Notarization Setup

To notarize your app, first store your credentials:

xcrun notarytool store-credentials --apple-id <email> --team-id <TEAM_ID> --password <app-password> --keychain-profile "MacOsPublishProfile"

You can then use:

macospublish YourApp.csproj --notarize MacOsPublishProfile

πŸ”— Example

macospublish MyApp.csproj publish/MyApp "Developer ID Application: Your Name (TEAMID)" "Developer ID Installer: Your Name (TEAMID)" --notarize MacOsPublishProfile

🧠 Features

  • βœ… Supports both osx-arm64 and osx-x64
  • βœ… Parallel builds
  • βœ… Deduplicates shared files (using SHA-256)
  • βœ… Creates .app, .pkg, and .dmg
  • βœ… Optional Apple notarization and stapling
  • βœ… Symbolic links to shared files
  • βœ… .DS_Store cleanup
  • βœ… Automatic architecture launcher script

πŸ“¦ Requirements

  • .NET SDK
  • macOS with:
    • xcrun
    • codesign
    • productbuild
    • hdiutil

πŸ“„ License

MIT License β€” (C) 2025 Castello Branco Technologia LTDA

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
1.5.1 126 3/14/2025
1.5.0 125 3/14/2025
1.2.5 133 3/13/2025
1.2.2 134 3/13/2025
1.2.1 133 3/13/2025
1.2.0 131 3/13/2025
1.1.4 133 3/13/2025
1.1.3 133 3/13/2025
1.1.2 128 3/13/2025
1.1.1 132 3/13/2025
1.1.0 134 3/13/2025
1.0.5 144 3/12/2025
1.0.2 141 3/12/2025
1.0.0 153 3/11/2025