[PR #121] [MERGED] Support multiple package architectures #240

Closed
opened 2026-01-29 16:31:32 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quamotion/dotnet-packaging/pull/121
Author: @qmfrederik
Created: 11/21/2019
Status: Merged
Merged: 11/21/2019
Merged by: @qmfrederik

Base: masterHead: features/arm


📝 Commits (4)

  • e9a5776 Support parsing runtime identifiers
  • 0f3ddf4 DebTask: Make the target achitecture dynamic
  • 10e4c5d RpmTask: Auto-determine package architecture
  • 7062be3 Use netcoreapp2.1

📊 Changes

9 files changed (+387 additions, -6 deletions)

View changed files

Packaging.Targets.Tests/Deb/DebTaskTests.cs (+36 -0)
📝 Packaging.Targets.Tests/Packaging.Targets.Tests.csproj (+1 -1)
Packaging.Targets.Tests/Rpm/RpmTaskTests.cs (+36 -0)
Packaging.Targets.Tests/RuntimeIdentifierTests.cs (+77 -0)
📝 Packaging.Targets/DebTask.cs (+50 -1)
📝 Packaging.Targets/RpmTask.cs (+52 -1)
Packaging.Targets/RuntimeIdentifiers.cs (+125 -0)
📝 Packaging.Targets/build/Packaging.Targets.targets (+9 -2)
📝 appveyor.yml (+1 -1)

📄 Description

Determine the package architecture from the RuntimeIdentifier, instead of hard-coding it to amd64/x86_64.

Fixes #117
Fixes #51


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quamotion/dotnet-packaging/pull/121 **Author:** [@qmfrederik](https://github.com/qmfrederik) **Created:** 11/21/2019 **Status:** ✅ Merged **Merged:** 11/21/2019 **Merged by:** [@qmfrederik](https://github.com/qmfrederik) **Base:** `master` ← **Head:** `features/arm` --- ### 📝 Commits (4) - [`e9a5776`](https://github.com/quamotion/dotnet-packaging/commit/e9a5776fec2436a78e89bf51f7d4fe2baa70a187) Support parsing runtime identifiers - [`0f3ddf4`](https://github.com/quamotion/dotnet-packaging/commit/0f3ddf43bf85af213b9e93b5871c758e89521b55) DebTask: Make the target achitecture dynamic - [`10e4c5d`](https://github.com/quamotion/dotnet-packaging/commit/10e4c5d18a558ff70420ffb4a735999c2433b6f0) RpmTask: Auto-determine package architecture - [`7062be3`](https://github.com/quamotion/dotnet-packaging/commit/7062be330ce44452401c33e208497268a07ec3ee) Use netcoreapp2.1 ### 📊 Changes **9 files changed** (+387 additions, -6 deletions) <details> <summary>View changed files</summary> ➕ `Packaging.Targets.Tests/Deb/DebTaskTests.cs` (+36 -0) 📝 `Packaging.Targets.Tests/Packaging.Targets.Tests.csproj` (+1 -1) ➕ `Packaging.Targets.Tests/Rpm/RpmTaskTests.cs` (+36 -0) ➕ `Packaging.Targets.Tests/RuntimeIdentifierTests.cs` (+77 -0) 📝 `Packaging.Targets/DebTask.cs` (+50 -1) 📝 `Packaging.Targets/RpmTask.cs` (+52 -1) ➕ `Packaging.Targets/RuntimeIdentifiers.cs` (+125 -0) 📝 `Packaging.Targets/build/Packaging.Targets.targets` (+9 -2) 📝 `appveyor.yml` (+1 -1) </details> ### 📄 Description Determine the package architecture from the RuntimeIdentifier, instead of hard-coding it to amd64/x86_64. Fixes #117 Fixes #51 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 16:31:32 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/dotnet-packaging#240