[PR #1109] [MERGED] Add Aspire Extension #1232

Closed
opened 2025-12-29 09:18:59 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/1109
Author: @StefH
Created: 5/24/2024
Status: Merged
Merged: 7/27/2024
Merged by: @StefH

Base: masterHead: stef-aspire


📝 Commits (10+)

📊 Changes

70 files changed (+2849 additions, -31 deletions)

View changed files

📝 .github/workflows/ci.yml (+10 -6)
📝 PackageReadme.md (+8 -1)
📝 README.md (+6 -1)
📝 WireMock.Net Solution.sln (+58 -0)
📝 azure-pipelines-ci.yml (+22 -11)
examples-Aspire/AspireApp1.ApiService/AspireApp1.ApiService.csproj (+13 -0)
examples-Aspire/AspireApp1.ApiService/Program.cs (+52 -0)
examples-Aspire/AspireApp1.ApiService/Properties/launchSettings.json (+25 -0)
examples-Aspire/AspireApp1.ApiService/appsettings.Development.json (+8 -0)
examples-Aspire/AspireApp1.ApiService/appsettings.json (+9 -0)
examples-Aspire/AspireApp1.AppHost/AspireApp1.AppHost.csproj (+23 -0)
examples-Aspire/AspireApp1.AppHost/Program.cs (+21 -0)
examples-Aspire/AspireApp1.AppHost/Properties/launchSettings.json (+29 -0)
examples-Aspire/AspireApp1.AppHost/WeatherForecastApiMock.cs (+36 -0)
examples-Aspire/AspireApp1.AppHost/WireMockMappings/873d495f-940e-4b86-a1f4-4f0fc7be8b8b.json (+41 -0)
examples-Aspire/AspireApp1.AppHost/appsettings.Development.json (+8 -0)
examples-Aspire/AspireApp1.AppHost/appsettings.json (+9 -0)
examples-Aspire/AspireApp1.AppHostOriginal/AspireApp1.AppHostOriginal.csproj (+20 -0)
examples-Aspire/AspireApp1.AppHostOriginal/Program.cs (+9 -0)
examples-Aspire/AspireApp1.AppHostOriginal/Properties/launchSettings.json (+29 -0)

...and 50 more files

📄 Description

No description provided


🔄 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/wiremock/WireMock.Net/pull/1109 **Author:** [@StefH](https://github.com/StefH) **Created:** 5/24/2024 **Status:** ✅ Merged **Merged:** 7/27/2024 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `stef-aspire` --- ### 📝 Commits (10+) - [`8b8b3bb`](https://github.com/wiremock/WireMock.Net/commit/8b8b3bbedc13aa42a0d22a63361d45dc3edf6016) WireMock.Net.Aspire - [`ae28729`](https://github.com/wiremock/WireMock.Net/commit/ae28729d26f204476ac5b7ff42c1f9270faf563f) . - [`46db7a7`](https://github.com/wiremock/WireMock.Net/commit/46db7a7055e45188d782b384fcca63f0fc60e84c) xxx - [`d3befab`](https://github.com/wiremock/WireMock.Net/commit/d3befabf6d6b7bbfe82c1603e6d750a0146d1ca2) nuget - [`b462533`](https://github.com/wiremock/WireMock.Net/commit/b462533fb92643464bed7a443940b5fc24c3e417) [CodeFactor] Apply fixes - [`507b0f4`](https://github.com/wiremock/WireMock.Net/commit/507b0f4e0c2744199d13c5f9615fb03ee100884b) ut - [`fcf4c94`](https://github.com/wiremock/WireMock.Net/commit/fcf4c941cecc6dee67573680f06e1876d3c79e10) t - [`04342fc`](https://github.com/wiremock/WireMock.Net/commit/04342fc56c36aebdbe9e35807d39cf545824afc5) **WireMock.Net.Aspire** - [`e3cfcc8`](https://github.com/wiremock/WireMock.Net/commit/e3cfcc8765a72920adec4a749f00e874427806bd) . - [`b4a8e24`](https://github.com/wiremock/WireMock.Net/commit/b4a8e24fa3f1345534007f505047cc568de458cc) t ### 📊 Changes **70 files changed** (+2849 additions, -31 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+10 -6) 📝 `PackageReadme.md` (+8 -1) 📝 `README.md` (+6 -1) 📝 `WireMock.Net Solution.sln` (+58 -0) 📝 `azure-pipelines-ci.yml` (+22 -11) ➕ `examples-Aspire/AspireApp1.ApiService/AspireApp1.ApiService.csproj` (+13 -0) ➕ `examples-Aspire/AspireApp1.ApiService/Program.cs` (+52 -0) ➕ `examples-Aspire/AspireApp1.ApiService/Properties/launchSettings.json` (+25 -0) ➕ `examples-Aspire/AspireApp1.ApiService/appsettings.Development.json` (+8 -0) ➕ `examples-Aspire/AspireApp1.ApiService/appsettings.json` (+9 -0) ➕ `examples-Aspire/AspireApp1.AppHost/AspireApp1.AppHost.csproj` (+23 -0) ➕ `examples-Aspire/AspireApp1.AppHost/Program.cs` (+21 -0) ➕ `examples-Aspire/AspireApp1.AppHost/Properties/launchSettings.json` (+29 -0) ➕ `examples-Aspire/AspireApp1.AppHost/WeatherForecastApiMock.cs` (+36 -0) ➕ `examples-Aspire/AspireApp1.AppHost/WireMockMappings/873d495f-940e-4b86-a1f4-4f0fc7be8b8b.json` (+41 -0) ➕ `examples-Aspire/AspireApp1.AppHost/appsettings.Development.json` (+8 -0) ➕ `examples-Aspire/AspireApp1.AppHost/appsettings.json` (+9 -0) ➕ `examples-Aspire/AspireApp1.AppHostOriginal/AspireApp1.AppHostOriginal.csproj` (+20 -0) ➕ `examples-Aspire/AspireApp1.AppHostOriginal/Program.cs` (+9 -0) ➕ `examples-Aspire/AspireApp1.AppHostOriginal/Properties/launchSettings.json` (+29 -0) _...and 50 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 09:18:59 +01:00
adam closed this issue 2025-12-29 09:18:59 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WireMock.Net#1232