Test Data: Fixing endpoint not working #20044 (#20227)

* It worked before i must have broken it somehow. Commit as checkpoint

* Adding a reference from Web.UI.csproj to TestData to allow composers to be composed

* Changing readme and removing project reference
This commit is contained in:
Nicklas Kramer
2025-09-23 13:22:29 +02:00
committed by GitHub
parent 859505e751
commit 7db7346d4a
5 changed files with 53 additions and 54 deletions

View File

@@ -0,0 +1,10 @@
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.DependencyInjection;
using Umbraco.TestData.Extensions;
namespace Umbraco.TestData;
public class TestDataComposer : IComposer
{
public void Compose(IUmbracoBuilder builder) => builder.AddUmbracoTestData();
}