microsoft/migrating-to-msmq-messaging
> Migrates .NET projects from System.Messaging to MSMQ.Messaging for .NET Core compatibility. Use when upgrading projects that reference System.Messaging, MessageQueue, XmlMessageFormatter, or when migrating MSMQ queue code from .NET Framework to .NET Core/.NET 5+. Also triggers for queue configuration migration from web.config/app.config to appsettings.json and replacing ConfigurationManager with dependency injection for queue settings.
npx skills add https://github.com/microsoft/upgrade-agent-plugins --skill migrating-to-msmq-messaging
Migrate .NET projects from System.Messaging to MSMQ.Messaging for .NET Core compatibility. The APIs are nearly identical (same class names, different namespace), so migration focuses on reference updates, configuration changes, and dependency injection adoption.
First verify the project actually uses System.Messaging. If it does not, inform the user there is nothing to do.
Task Progress:
- [ ] Step 1: Remove System.Messaging references
- [ ] Step 2: Update using statements and code
- [ ] Step 3: Migrate queue configuration
- [ ] Step 4: Verify and clean up
Remove System.Messaging assembly references from project files (.csproj/.vbproj). These are not needed because MSMQ.Messaging provides the replacement types.
Find all usages of System.Messaging in the project and update them:
using System.Messaging with using MSMQ.Messaging in all filesMessageQueue, Message, and XmlMessageFormatter usage to the MSMQ.Messaging equivalents (same class names, different namespace — see API Mapping below)Move queue settings from web.config/app.config to appsettings.json because ConfigurationManager is not available in .NET Core — configuration must use the options pattern with dependency injection instead.
appsettings.json:
{
"MessageQueue": {
"QueuePath": "./private$/myqueue"
}
}
Configuration model class:
public class MessageQueueOptions
{
public string QueuePath { get; set; }
}
Registration in Program.cs:
builder.Services.Configure<MessageQueueOptions>(
builder.Configuration.GetSection("MessageQueue"));
Inject IOptions<MessageQueueOptions> into classes that need queue configuration, replacing any ConfigurationManager usage.
Build the project and search for any remaining System.Messaging references. Fix any remaining compilation errors.
| System.Messaging | MSMQ.Messaging |
|------------------|----------------|
| MessageQueue | MessageQueue (same name, different namespace) |
| Message | Message (same name, different namespace) |
| XmlMessageFormatter | XmlMessageFormatter (same name, different namespace) |
System.Messaging referencesMSMQ.Messagingappsettings.json (not web.config/app.config)ConfigurationManager)Take microsoft/migrating-to-msmq-messaging from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.