We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b329aa commit 9ab647fCopy full SHA for 9ab647f
.github/workflows/build.yml
@@ -19,6 +19,14 @@ jobs:
19
- name: Checkout
20
uses: actions/checkout@v4
21
22
+ - name: Install MSMQ
23
+ run: |
24
+ Write-Host "Installing MSMQ feature..."
25
+ Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-Server -All -NoRestart
26
+ Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-HTTP -All -NoRestart
27
+ Write-Host "MSMQ installation completed."
28
+ Get-Service -Name MSMQ | Format-List *
29
+
30
- name: Setup .NET
31
uses: actions/setup-dotnet@v4
32
with:
0 commit comments