Limited
2
0

refactor(ci): simplify release workflow to build nuget package
Some checks failed
Release / Verify Apple Build (push) Failing after 12s
Release / Build & Pack (push) Failing after 8h59m38s
Release / Publish (push) Has been skipped

Replace platform-specific app builds with NuGet package creation for library distribution. Remove Android/iOS/Windows signing and artifact generation since this is a library, not an app. Keep macOS build job for verification only. Add PackageId and package metadata to csproj.
This commit is contained in:
2026-03-03 23:43:44 -05:00
parent db77a4cebc
commit 1a0e3b94c7
2 changed files with 66 additions and 206 deletions

View File

@@ -18,6 +18,21 @@
<MauiXaml Update="MyPage.xaml" Inflator="Runtime" /> (force runtime inflation) -->
<MauiXamlInflator>SourceGen</MauiXamlInflator>
<!-- NuGet Package Metadata -->
<PackageId>BuyMeCofee.Maui</PackageId>
<Title>Buy Me a Coffee MAUI Controls</Title>
<Description>Branded Buy Me a Coffee controls for .NET MAUI — button, support widget, and QR code with official BMC branding.</Description>
<Authors>David H Friedel Jr</Authors>
<Company>MarketAlly</Company>
<Copyright>Copyright © 2026 MarketAlly LLC</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.marketally.com/misc/bmc.maui</PackageProjectUrl>
<RepositoryUrl>https://git.marketally.com/misc/bmc.maui</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>maui;buymeacoffee;bmc;donation;tip;controls</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.0</SupportedOSPlatformVersion>